ETH Price: $2,556.32 (+3.79%)

Token

Emerald Rise (ER)
 

Overview

Max Total Supply

96 ER

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pororin.eth
Balance
1 ER
0xd537a2b2b97d104f2d9c7a84377fc11573629085
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EmeraldRise

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

/// @title Lv 1. Hunter
/// @author André Costa @ Terratecc

pragma solidity ^0.8.9;

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.9;


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.9;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

/**
 * @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



pragma solidity ^0.8.9;

/**
 * @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



pragma solidity ^0.8.9;


/**
 * @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



pragma solidity ^0.8.9;


/**
 * @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/IERC721Metadata.sol



pragma solidity ^0.8.9;


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


pragma solidity >=0.8.9;
// to enable certain compiler features



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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

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

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

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

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

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

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.9;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.9;

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

/**
 * @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 virtual 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public 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 {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)


contract EmeraldRise is ERC721A, Ownable {
    
    using Strings for uint256;
    
    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens;
    uint256 private maxTokensPresale;
    
    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    //cost of mints depending on state of sale    
    uint private constant mintCostPresale = 0.09 ether;
    uint private constant mintCostPublicSale = 0.14 ether;
    
    //maximum amount of mints allowed per person
    uint256 public constant maxMint = 3;
    
    //the amount of reserved mints that have currently been executed by creator and giveaways
    uint private _reservedMints;
    
    //the maximum amount of reserved mints allowed for creator and giveaways
    uint private maxReservedMints = 65;
    
    //dummy address that we use to sign the mint transaction to make sure it is valid
    address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c;
    
    //marks the timestamp of when the respective sales open
    uint256 internal presaleLaunchTime;
    uint256 internal publicSaleLaunchTime;
    uint256 internal revealTime;

    //dictates if sale is paused or not
    bool private paused_;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {NoSale, Presale, PublicSale}

    //defines the uri for when the NFTs have not been yet revealed
    string public unrevealedURI;
    
    //declaring initial values for variables
    constructor() ERC721A('Emerald Rise', 'ER') {
        maxTotalTokens = 555;
        maxTokensPresale = 30;

        unrevealedURI = "ipfs://.../";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function changeUnrevealedURI(string memory unrevealedURI_) public onlyOwner {
        unrevealedURI = unrevealedURI_;
    }

    function switchToPresale() public onlyOwner {
        require(saleState() == State.NoSale, 'Sale is already Open!');
        presaleLaunchTime = block.timestamp;
    }

    function switchToPublicSale() public onlyOwner {
        require(saleState() == State.Presale, 'Sale must be in Presale!');
        publicSaleLaunchTime = block.timestamp;
    }
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    //mint a @param number of NFTs in presale
    function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v,  _r, _s) public payable {
        require(!paused_, "Sale is paused!");
        State saleState_ = saleState();
        require(saleState_ != State.NoSale, "Sale in not open yet!");
        require(saleState_ != State.PublicSale, "Presale has closed, Check out Public Sale!");
        require(totalSupply() + number <= maxTokensPresale  + _reservedMints, "Not enough NFTs left to mint in Presale..");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 3 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.09 ether each NFT)");
        
        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;

    }

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable {
        require(!paused_, "Sale is paused!");
        State saleState_ = saleState();
        require(saleState_ == State.PublicSale, "Public Sale in not open yet!");
        require(totalSupply() + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        //require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 4 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.14 ether for each NFT)");

        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");
        
        //check to see that 24 hours have passed since beginning of publicsale launch
        if (revealTime == 0) {
            return unrevealedURI;
        }
        
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : "";
        }    
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        _reservedMints += number; 
        
    }
    
    //burn the tokens that have not been sold yet
    function burnTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //se the current account balance
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(0x6a2fBc3F859a1eABA4587A9F8Ddc43Fe0d31737C ), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //change the dummy account used for signing transactions
    function changeDummy(address _dummy) public onlyOwner {
        dummy = _dummy;
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        if (presaleLaunchTime == 0) {
            return State.NoSale;
        }
        else if (publicSaleLaunchTime == 0) {
            return State.Presale;
        }
        else {
            return State.PublicSale;
        }
    }
    
    //gets the cost of current mint
    function mintCost() public view returns(uint) {
        State saleState_ = saleState();
        if (saleState_ == State.NoSale || saleState_ == State.Presale) {
            return mintCostPresale;
        }
        else {
            return mintCostPublicSale;
        }
    }

    //see when NFTs will be revealed
    function timeOfReveal() public view returns(uint256) {
        require(revealTime != 0, 'NFT Reveal Time has not been determined yet!');
        return revealTime;
    }

    function reveal() public onlyOwner {
        require(revealTime == 0, "Collection has already been revealed!");
        revealTime = block.timestamp;
    }

    function isPaused() public view returns(bool) {
        return paused_;
    }

    function togglePause() public onlyOwner {
        paused_ = !paused_;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"changeUnrevealedURI","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":"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":"saleState","outputs":[{"internalType":"enum EmeraldRise.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeOfReveal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526041600c557380e4929c869102140e69550bbecc20bed61b080c600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040518060400160405280600c81526020017f456d6572616c64205269736500000000000000000000000000000000000000008152506040518060400160405280600281526020017f45520000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000f09291906200025f565b508060029080519060200190620001099291906200025f565b5050506200012c620001206200019160201b60201c565b6200019960201b60201c565b61022b600881905550601e6009819055506040518060400160405280600b81526020017f697066733a2f2f2e2e2e2f000000000000000000000000000000000000000000815250601390805190602001906200018a9291906200025f565b5062000374565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d906200033e565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035757607f821691505b602082108114156200036e576200036d6200030f565b5b50919050565b615add80620003846000396000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd14610842578063dcd4e7321461087f578063e985e9c51461089b578063eab41782146108d8578063f2fde38b146108ef578063ff9849941461091857610251565b8063b3ab66b014610792578063b88d4fde146107ae578063bdb4b848146107d7578063c4ae316814610802578063c4d8b9df1461081957610251565b806395d89b41116100fd57806395d89b41146106d1578063a22cb465146106fc578063a475b5dd14610725578063b0a1c1c41461073c578063b187bd261461076757610251565b806370a08231146105fc578063715018a6146106395780637501f741146106505780637c76f6981461067b5780638da5cb5b146106a657610251565b80633023eba6116101c75780634520e9161161018b5780634520e916146105015780634f6ccce71461052c578063603f4d52146105695780636352211e146105945780637035bf18146105d157610251565b80633023eba61461041e578063326241141461045b57806339a0c6f9146104985780633ccfd60b146104c157806342842e0e146104d857610251565b8063095ea7b31161020e578063095ea7b31461033b57806318160ddd1461036457806318df64031461038f57806323b872dd146103b85780632f745c59146103e157610251565b80630191a6571461025657806301ffc9a71461027f57806306fdde03146102bc57806308003f78146102e7578063081812fc146102fe57610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061393e565b61092f565b005b34801561028b57600080fd5b506102a660048036038101906102a191906139c3565b6109ef565b6040516102b39190613a0b565b60405180910390f35b3480156102c857600080fd5b506102d1610b39565b6040516102de9190613abf565b60405180910390f35b3480156102f357600080fd5b506102fc610bcb565b005b34801561030a57600080fd5b5061032560048036038101906103209190613b17565b610c57565b6040516103329190613b53565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613b6e565b610cdc565b005b34801561037057600080fd5b50610379610df5565b6040516103869190613bbd565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613bd8565b610dfe565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613c18565b610f49565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613b6e565b610f59565b6040516104159190613bbd565b60405180910390f35b34801561042a57600080fd5b506104456004803603810190610440919061393e565b61114b565b6040516104529190613bbd565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613cda565b611163565b60405161048f9190613a0b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613e76565b611261565b005b3480156104cd57600080fd5b506104d66112f7565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c18565b6113e3565b005b34801561050d57600080fd5b50610516611403565b6040516105239190613bbd565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613b17565b611496565b6040516105609190613bbd565b60405180910390f35b34801561057557600080fd5b5061057e6114e9565b60405161058b9190613f36565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613b17565b61151a565b6040516105c89190613b53565b60405180910390f35b3480156105dd57600080fd5b506105e6611530565b6040516105f39190613abf565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e919061393e565b6115be565b6040516106309190613bbd565b60405180910390f35b34801561064557600080fd5b5061064e6116a7565b005b34801561065c57600080fd5b5061066561172f565b6040516106729190613bbd565b60405180910390f35b34801561068757600080fd5b50610690611734565b60405161069d9190613bbd565b60405180910390f35b3480156106b257600080fd5b506106bb611783565b6040516106c89190613b53565b60405180910390f35b3480156106dd57600080fd5b506106e66117ad565b6040516106f39190613abf565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613f7d565b61183f565b005b34801561073157600080fd5b5061073a6119c0565b005b34801561074857600080fd5b50610751611a8a565b60405161075e9190613bbd565b60405180910390f35b34801561077357600080fd5b5061077c611b0e565b6040516107899190613a0b565b60405180910390f35b6107ac60048036038101906107a79190613b17565b611b25565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061405e565b611d11565b005b3480156107e357600080fd5b506107ec611d6d565b6040516107f99190613bbd565b60405180910390f35b34801561080e57600080fd5b50610817611df7565b005b34801561082557600080fd5b50610840600480360381019061083b9190613e76565b611e9f565b005b34801561084e57600080fd5b5061086960048036038101906108649190613b17565b611f35565b6040516108769190613abf565b60405180910390f35b610899600480360381019061089491906140e1565b61207a565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614148565b6123a4565b6040516108cf9190613a0b565b60405180910390f35b3480156108e457600080fd5b506108ed612438565b005b3480156108fb57600080fd5b506109166004803603810190610911919061393e565b61252b565b005b34801561092457600080fd5b5061092d612623565b005b610937612716565b73ffffffffffffffffffffffffffffffffffffffff16610955611783565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906141d4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750610b318261271e565b5b9050919050565b606060018054610b4890614223565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614223565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b610bd3612716565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611783565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906141d4565b60405180910390fd5b610c4f610df5565b600881905550565b6000610c6282612788565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906142c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce78261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90614359565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d77612716565b73ffffffffffffffffffffffffffffffffffffffff161480610da65750610da581610da0612716565b6123a4565b5b610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc906143eb565b60405180910390fd5b610df0838383612795565b505050565b60008054905090565b610e06612716565b73ffffffffffffffffffffffffffffffffffffffff16610e24611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906141d4565b60405180910390fd5b600c5482600b54610e8b919061443a565b1115610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614502565b60405180910390fd5b610ed68183612847565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f25919061443a565b9250508190555081600b6000828254610f3e919061443a565b925050819055505050565b610f54838383612865565b505050565b6000610f64836115be565b8210610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614594565b60405180910390fd5b6000610faf610df5565b905060008060005b83811015611109576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110fb57868414156110f2578195505050505050611145565b83806001019450505b508080600101915050610fb7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614626565b60405180910390fd5b92915050565b60126020528060005260406000206000915090505481565b600080308660405160200161117992919061468e565b6040516020818303038152906040528051906020012090506001816040516020016111a49190614732565b60405160208183030381529060405280519060200120868686604051600081526020016040526040516111da9493929190614776565b6020604051602081039080840390855afa1580156111fc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b611269612716565b73ffffffffffffffffffffffffffffffffffffffff16611287611783565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906141d4565b60405180910390fd5b80600a90805190602001906112f39291906137ef565b5050565b6112ff612716565b73ffffffffffffffffffffffffffffffffffffffff1661131d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906141d4565b60405180910390fd5b600061137d611a8a565b9050600081116113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b99061482d565b60405180910390fd5b6113e0736a2fbc3f859a1eaba4587a9f8ddc43fe0d31737c82612da5565b50565b6113fe83838360405180602001604052806000815250611d11565b505050565b600061140d612716565b73ffffffffffffffffffffffffffffffffffffffff1661142b611783565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906141d4565b60405180910390fd5b600b54600c54611491919061484d565b905090565b60006114a0610df5565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906148f3565b60405180910390fd5b819050919050565b600080600e5414156114fe5760009050611517565b6000600f5414156115125760019050611517565b600290505b90565b600061152582612e56565b600001519050919050565b6013805461153d90614223565b80601f016020809104026020016040519081016040528092919081815260200182805461156990614223565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614985565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116af612716565b73ffffffffffffffffffffffffffffffffffffffff166116cd611783565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906141d4565b60405180910390fd5b61172d6000612ff0565b565b600381565b600080601054141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614a17565b60405180910390fd5b601054905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117bc90614223565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890614223565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847612716565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614a83565b60405180910390fd5b80600660006118c2612716565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196f612716565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190613a0b565b60405180910390a35050565b6119c8612716565b73ffffffffffffffffffffffffffffffffffffffff166119e6611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906141d4565b60405180910390fd5b600060105414611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614b15565b60405180910390fd5b42601081905550565b6000611a94612716565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611783565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141d4565b60405180910390fd5b47905090565b6000601160009054906101000a900460ff16905090565b601160009054906101000a900460ff1615611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614b81565b60405180910390fd5b6000611b7f6114e9565b9050600280811115611b9457611b93613ebf565b5b816002811115611ba757611ba6613ebf565b5b14611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614bed565b60405180910390fd5b600b54600c54611bf7919061484d565b600854611c04919061484d565b82611c0d610df5565b611c17919061443a565b1115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614c59565b60405180910390fd5b81611c61611d6d565b611c6b9190614c79565b341015611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614d6b565b60405180910390fd5b611cb73383612847565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d06919061443a565b925050819055505050565b611d1c848484612865565b611d28848484846130b6565b611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614dfd565b60405180910390fd5b50505050565b600080611d786114e9565b905060006002811115611d8e57611d8d613ebf565b5b816002811115611da157611da0613ebf565b5b1480611dd1575060016002811115611dbc57611dbb613ebf565b5b816002811115611dcf57611dce613ebf565b5b145b15611de75767013fbe85edc90000915050611df4565b6701f161421c8e00009150505b90565b611dff612716565b73ffffffffffffffffffffffffffffffffffffffff16611e1d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906141d4565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b611ea7612716565b73ffffffffffffffffffffffffffffffffffffffff16611ec5611783565b73ffffffffffffffffffffffffffffffffffffffff1614611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f12906141d4565b60405180910390fd5b8060139080519060200190611f319291906137ef565b5050565b6060611f4082612788565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614e8f565b60405180910390fd5b6000601054141561201c5760138054611f9790614223565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc390614223565b80156120105780601f10611fe557610100808354040283529160200191612010565b820191906000526020600020905b815481529060010190602001808311611ff357829003601f168201915b50505050509050612075565b600061202661324d565b905060008151116120465760405180602001604052806000815250612071565b80612050846132df565b604051602001612061929190614f2c565b6040516020818303038152906040525b9150505b919050565b82828261208933848484611163565b6120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614fa7565b60405180910390fd5b601160009054906101000a900460ff1615612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614b81565b60405180910390fd5b60006121226114e9565b90506000600281111561213857612137613ebf565b5b81600281111561214b5761214a613ebf565b5b141561218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218390615013565b60405180910390fd5b60028081111561219f5761219e613ebf565b5b8160028111156121b2576121b1613ebf565b5b14156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea906150a5565b60405180910390fd5b600b54600954612203919061443a565b8861220c610df5565b612216919061443a565b1115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90615137565b60405180910390fd5b600388601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122a4919061443a565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906151c9565b60405180910390fd5b876122ee611d6d565b6122f89190614c79565b34101561233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190615281565b60405180910390fd5b6123443389612847565b87601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612393919061443a565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612440612716565b73ffffffffffffffffffffffffffffffffffffffff1661245e611783565b73ffffffffffffffffffffffffffffffffffffffff16146124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab906141d4565b60405180910390fd5b600060028111156124c8576124c7613ebf565b5b6124d06114e9565b60028111156124e2576124e1613ebf565b5b14612522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612519906152ed565b60405180910390fd5b42600e81905550565b612533612716565b73ffffffffffffffffffffffffffffffffffffffff16612551611783565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e906141d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061537f565b60405180910390fd5b61262081612ff0565b50565b61262b612716565b73ffffffffffffffffffffffffffffffffffffffff16612649611783565b73ffffffffffffffffffffffffffffffffffffffff161461269f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612696906141d4565b60405180910390fd5b600160028111156126b3576126b2613ebf565b5b6126bb6114e9565b60028111156126cd576126cc613ebf565b5b1461270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906153eb565b60405180910390fd5b42600f81905550565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612861828260405180602001604052806000815250613440565b5050565b600061287082612e56565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612897612716565b73ffffffffffffffffffffffffffffffffffffffff1614806128f357506128bc612716565b73ffffffffffffffffffffffffffffffffffffffff166128db84610c57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290f575061290e8260000151612909612716565b6123a4565b5b905080612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129489061547d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba9061550f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a906155a1565b60405180910390fd5b612a408585856001613452565b612a506000848460000151612795565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d3557612c9481612788565b15612d345782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9e8585856001613458565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612dcb906155f2565b60006040518083038185875af1925050503d8060008114612e08576040519150601f19603f3d011682016040523d82523d6000602084013e612e0d565b606091505b5050905080612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890615653565b60405180910390fd5b505050565b612e5e613875565b612e6782612788565b612ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9d906156e5565b60405180910390fd5b60008290505b60008110612faf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fa0578092505050612feb565b50808060019003915050612eac565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290615777565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130d78473ffffffffffffffffffffffffffffffffffffffff1661345e565b15613240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613100612716565b8786866040518563ffffffff1660e01b815260040161312294939291906157ec565b602060405180830381600087803b15801561313c57600080fd5b505af192505050801561316d57506040513d601f19601f8201168201806040525081019061316a919061584d565b60015b6131f0573d806000811461319d576040519150601f19603f3d011682016040523d82523d6000602084013e6131a2565b606091505b506000815114156131e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131df90614dfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613245565b600190505b949350505050565b6060600a805461325c90614223565b80601f016020809104026020016040519081016040528092919081815260200182805461328890614223565b80156132d55780601f106132aa576101008083540402835291602001916132d5565b820191906000526020600020905b8154815290600101906020018083116132b857829003601f168201915b5050505050905090565b60606000821415613327576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061343b565b600082905060005b600082146133595780806133429061587a565b915050600a8261335291906158f2565b915061332f565b60008167ffffffffffffffff81111561337557613374613d4b565b5b6040519080825280601f01601f1916602001820160405280156133a75781602001600182028036833780820191505090505b5090505b60008514613434576001826133c0919061484d565b9150600a856133cf9190615923565b60306133db919061443a565b60f81b8183815181106133f1576133f0615954565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342d91906158f2565b94506133ab565b8093505050505b919050565b61344d8383836001613471565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de906159f5565b60405180910390fd5b600084141561352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615a87565b60405180910390fd5b6135386000868387613452565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137d257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137bd5761377d60008884886130b6565b6137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b390614dfd565b60405180910390fd5b5b81806001019250508080600101915050613706565b5080600081905550506137e86000868387613458565b5050505050565b8280546137fb90614223565b90600052602060002090601f01602090048101928261381d5760008555613864565b82601f1061383657805160ff1916838001178555613864565b82800160010185558215613864579182015b82811115613863578251825591602001919060010190613848565b5b50905061387191906138af565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138c85760008160009055506001016138b0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061390b826138e0565b9050919050565b61391b81613900565b811461392657600080fd5b50565b60008135905061393881613912565b92915050565b600060208284031215613954576139536138d6565b5b600061396284828501613929565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139a08161396b565b81146139ab57600080fd5b50565b6000813590506139bd81613997565b92915050565b6000602082840312156139d9576139d86138d6565b5b60006139e7848285016139ae565b91505092915050565b60008115159050919050565b613a05816139f0565b82525050565b6000602082019050613a2060008301846139fc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a60578082015181840152602081019050613a45565b83811115613a6f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a9182613a26565b613a9b8185613a31565b9350613aab818560208601613a42565b613ab481613a75565b840191505092915050565b60006020820190508181036000830152613ad98184613a86565b905092915050565b6000819050919050565b613af481613ae1565b8114613aff57600080fd5b50565b600081359050613b1181613aeb565b92915050565b600060208284031215613b2d57613b2c6138d6565b5b6000613b3b84828501613b02565b91505092915050565b613b4d81613900565b82525050565b6000602082019050613b686000830184613b44565b92915050565b60008060408385031215613b8557613b846138d6565b5b6000613b9385828601613929565b9250506020613ba485828601613b02565b9150509250929050565b613bb781613ae1565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b60008060408385031215613bef57613bee6138d6565b5b6000613bfd85828601613b02565b9250506020613c0e85828601613929565b9150509250929050565b600080600060608486031215613c3157613c306138d6565b5b6000613c3f86828701613929565b9350506020613c5086828701613929565b9250506040613c6186828701613b02565b9150509250925092565b600060ff82169050919050565b613c8181613c6b565b8114613c8c57600080fd5b50565b600081359050613c9e81613c78565b92915050565b6000819050919050565b613cb781613ca4565b8114613cc257600080fd5b50565b600081359050613cd481613cae565b92915050565b60008060008060808587031215613cf457613cf36138d6565b5b6000613d0287828801613929565b9450506020613d1387828801613c8f565b9350506040613d2487828801613cc5565b9250506060613d3587828801613cc5565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8382613a75565b810181811067ffffffffffffffff82111715613da257613da1613d4b565b5b80604052505050565b6000613db56138cc565b9050613dc18282613d7a565b919050565b600067ffffffffffffffff821115613de157613de0613d4b565b5b613dea82613a75565b9050602081019050919050565b82818337600083830152505050565b6000613e19613e1484613dc6565b613dab565b905082815260208101848484011115613e3557613e34613d46565b5b613e40848285613df7565b509392505050565b600082601f830112613e5d57613e5c613d41565b5b8135613e6d848260208601613e06565b91505092915050565b600060208284031215613e8c57613e8b6138d6565b5b600082013567ffffffffffffffff811115613eaa57613ea96138db565b5b613eb684828501613e48565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613eff57613efe613ebf565b5b50565b6000819050613f1082613eee565b919050565b6000613f2082613f02565b9050919050565b613f3081613f15565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a816139f0565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f936138d6565b5b6000613fa285828601613929565b9250506020613fb385828601613f68565b9150509250929050565b600067ffffffffffffffff821115613fd857613fd7613d4b565b5b613fe182613a75565b9050602081019050919050565b6000614001613ffc84613fbd565b613dab565b90508281526020810184848401111561401d5761401c613d46565b5b614028848285613df7565b509392505050565b600082601f83011261404557614044613d41565b5b8135614055848260208601613fee565b91505092915050565b60008060008060808587031215614078576140776138d6565b5b600061408687828801613929565b945050602061409787828801613929565b93505060406140a887828801613b02565b925050606085013567ffffffffffffffff8111156140c9576140c86138db565b5b6140d587828801614030565b91505092959194509250565b600080600080608085870312156140fb576140fa6138d6565b5b600061410987828801613b02565b945050602061411a87828801613c8f565b935050604061412b87828801613cc5565b925050606061413c87828801613cc5565b91505092959194509250565b6000806040838503121561415f5761415e6138d6565b5b600061416d85828601613929565b925050602061417e85828601613929565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141be602083613a31565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423b57607f821691505b6020821081141561424f5761424e6141f4565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006142b1602d83613a31565b91506142bc82614255565b604082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614343602283613a31565b915061434e826142e7565b604082019050919050565b6000602082019050818103600083015261437281614336565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006143d5603983613a31565b91506143e082614379565b604082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061444582613ae1565b915061445083613ae1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144855761448461440b565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006144ec602783613a31565b91506144f782614490565b604082019050919050565b6000602082019050818103600083015261451b816144df565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061457e602283613a31565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614610602e83613a31565b915061461b826145b4565b604082019050919050565b6000602082019050818103600083015261463f81614603565b9050919050565b60008160601b9050919050565b600061465e82614646565b9050919050565b600061467082614653565b9050919050565b61468861468382613900565b614665565b82525050565b600061469a8285614677565b6014820191506146aa8284614677565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006146fb601c836146ba565b9150614706826146c5565b601c82019050919050565b6000819050919050565b61472c61472782613ca4565b614711565b82525050565b600061473d826146ee565b9150614749828461471b565b60208201915081905092915050565b61476181613ca4565b82525050565b61477081613c6b565b82525050565b600060808201905061478b6000830187614758565b6147986020830186614767565b6147a56040830185614758565b6147b26060830184614758565b95945050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614817602283613a31565b9150614822826147bb565b604082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b600061485882613ae1565b915061486383613ae1565b9250828210156148765761487561440b565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148dd602383613a31565b91506148e882614881565b604082019050919050565b6000602082019050818103600083015261490c816148d0565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061496f602b83613a31565b915061497a82614913565b604082019050919050565b6000602082019050818103600083015261499e81614962565b9050919050565b7f4e46542052657665616c2054696d6520686173206e6f74206265656e2064657460008201527f65726d696e656420796574210000000000000000000000000000000000000000602082015250565b6000614a01602c83613a31565b9150614a0c826149a5565b604082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614a6d601a83613a31565b9150614a7882614a37565b602082019050919050565b60006020820190508181036000830152614a9c81614a60565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e207265766560008201527f616c656421000000000000000000000000000000000000000000000000000000602082015250565b6000614aff602583613a31565b9150614b0a82614aa3565b604082019050919050565b60006020820190508181036000830152614b2e81614af2565b9050919050565b7f53616c6520697320706175736564210000000000000000000000000000000000600082015250565b6000614b6b600f83613a31565b9150614b7682614b35565b602082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614bd7601c83613a31565b9150614be282614ba1565b602082019050919050565b60006020820190508181036000830152614c0681614bca565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614c43601e83613a31565b9150614c4e82614c0d565b602082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b6000614c8482613ae1565b9150614c8f83613ae1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc857614cc761440b565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313420657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b6000614d55605183613a31565b9150614d6082614cd3565b606082019050919050565b60006020820190508181036000830152614d8481614d48565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614de7603383613a31565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e79602f83613a31565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b6000614eba82613a26565b614ec481856146ba565b9350614ed4818560208601613a42565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614f166005836146ba565b9150614f2182614ee0565b600582019050919050565b6000614f388285614eaf565b9150614f448284614eaf565b9150614f4f82614f09565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614f91601183613a31565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b6000614ffd601583613a31565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b600061508f602a83613a31565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7420696e2060008201527f50726573616c652e2e0000000000000000000000000000000000000000000000602082015250565b6000615121602983613a31565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f4d6178696d756d2033204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602483613a31565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303920657460208201527f6865722065616368204e46542900000000000000000000000000000000000000604082015250565b600061526b604d83613a31565b9150615276826151e9565b606082019050919050565b6000602082019050818103600083015261529a8161525e565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b60006152d7601583613a31565b91506152e2826152a1565b602082019050919050565b60006020820190508181036000830152615306816152ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615369602683613a31565b91506153748261530d565b604082019050919050565b600060208201905081810360008301526153988161535c565b9050919050565b7f53616c65206d75737420626520696e2050726573616c65210000000000000000600082015250565b60006153d5601883613a31565b91506153e08261539f565b602082019050919050565b60006020820190508181036000830152615404816153c8565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615467603283613a31565b91506154728261540b565b604082019050919050565b600060208201905081810360008301526154968161545a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006154f9602683613a31565b91506155048261549d565b604082019050919050565b60006020820190508181036000830152615528816154ec565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061558b602583613a31565b91506155968261552f565b604082019050919050565b600060208201905081810360008301526155ba8161557e565b9050919050565b600081905092915050565b50565b60006155dc6000836155c1565b91506155e7826155cc565b600082019050919050565b60006155fd826155cf565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061563d601483613a31565b915061564882615607565b602082019050919050565b6000602082019050818103600083015261566c81615630565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006156cf602a83613a31565b91506156da82615673565b604082019050919050565b600060208201905081810360008301526156fe816156c2565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615761602f83613a31565b915061576c82615705565b604082019050919050565b6000602082019050818103600083015261579081615754565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006157be82615797565b6157c881856157a2565b93506157d8818560208601613a42565b6157e181613a75565b840191505092915050565b60006080820190506158016000830187613b44565b61580e6020830186613b44565b61581b6040830185613bae565b818103606083015261582d81846157b3565b905095945050505050565b60008151905061584781613997565b92915050565b600060208284031215615863576158626138d6565b5b600061587184828501615838565b91505092915050565b600061588582613ae1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158b8576158b761440b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158fd82613ae1565b915061590883613ae1565b925082615918576159176158c3565b5b828204905092915050565b600061592e82613ae1565b915061593983613ae1565b925082615949576159486158c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006159df602183613a31565b91506159ea82615983565b604082019050919050565b60006020820190508181036000830152615a0e816159d2565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615a71602883613a31565b9150615a7c82615a15565b604082019050919050565b60006020820190508181036000830152615aa081615a64565b905091905056fea2646970667358221220ab60689158002a2d40ea655c8cdf7f0a8425ee4e2cc4f709743d9df172f9eb9564736f6c63430008090033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806370a0823111610139578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd14610842578063dcd4e7321461087f578063e985e9c51461089b578063eab41782146108d8578063f2fde38b146108ef578063ff9849941461091857610251565b8063b3ab66b014610792578063b88d4fde146107ae578063bdb4b848146107d7578063c4ae316814610802578063c4d8b9df1461081957610251565b806395d89b41116100fd57806395d89b41146106d1578063a22cb465146106fc578063a475b5dd14610725578063b0a1c1c41461073c578063b187bd261461076757610251565b806370a08231146105fc578063715018a6146106395780637501f741146106505780637c76f6981461067b5780638da5cb5b146106a657610251565b80633023eba6116101c75780634520e9161161018b5780634520e916146105015780634f6ccce71461052c578063603f4d52146105695780636352211e146105945780637035bf18146105d157610251565b80633023eba61461041e578063326241141461045b57806339a0c6f9146104985780633ccfd60b146104c157806342842e0e146104d857610251565b8063095ea7b31161020e578063095ea7b31461033b57806318160ddd1461036457806318df64031461038f57806323b872dd146103b85780632f745c59146103e157610251565b80630191a6571461025657806301ffc9a71461027f57806306fdde03146102bc57806308003f78146102e7578063081812fc146102fe57610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061393e565b61092f565b005b34801561028b57600080fd5b506102a660048036038101906102a191906139c3565b6109ef565b6040516102b39190613a0b565b60405180910390f35b3480156102c857600080fd5b506102d1610b39565b6040516102de9190613abf565b60405180910390f35b3480156102f357600080fd5b506102fc610bcb565b005b34801561030a57600080fd5b5061032560048036038101906103209190613b17565b610c57565b6040516103329190613b53565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613b6e565b610cdc565b005b34801561037057600080fd5b50610379610df5565b6040516103869190613bbd565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613bd8565b610dfe565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613c18565b610f49565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613b6e565b610f59565b6040516104159190613bbd565b60405180910390f35b34801561042a57600080fd5b506104456004803603810190610440919061393e565b61114b565b6040516104529190613bbd565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613cda565b611163565b60405161048f9190613a0b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613e76565b611261565b005b3480156104cd57600080fd5b506104d66112f7565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c18565b6113e3565b005b34801561050d57600080fd5b50610516611403565b6040516105239190613bbd565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613b17565b611496565b6040516105609190613bbd565b60405180910390f35b34801561057557600080fd5b5061057e6114e9565b60405161058b9190613f36565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613b17565b61151a565b6040516105c89190613b53565b60405180910390f35b3480156105dd57600080fd5b506105e6611530565b6040516105f39190613abf565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e919061393e565b6115be565b6040516106309190613bbd565b60405180910390f35b34801561064557600080fd5b5061064e6116a7565b005b34801561065c57600080fd5b5061066561172f565b6040516106729190613bbd565b60405180910390f35b34801561068757600080fd5b50610690611734565b60405161069d9190613bbd565b60405180910390f35b3480156106b257600080fd5b506106bb611783565b6040516106c89190613b53565b60405180910390f35b3480156106dd57600080fd5b506106e66117ad565b6040516106f39190613abf565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613f7d565b61183f565b005b34801561073157600080fd5b5061073a6119c0565b005b34801561074857600080fd5b50610751611a8a565b60405161075e9190613bbd565b60405180910390f35b34801561077357600080fd5b5061077c611b0e565b6040516107899190613a0b565b60405180910390f35b6107ac60048036038101906107a79190613b17565b611b25565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061405e565b611d11565b005b3480156107e357600080fd5b506107ec611d6d565b6040516107f99190613bbd565b60405180910390f35b34801561080e57600080fd5b50610817611df7565b005b34801561082557600080fd5b50610840600480360381019061083b9190613e76565b611e9f565b005b34801561084e57600080fd5b5061086960048036038101906108649190613b17565b611f35565b6040516108769190613abf565b60405180910390f35b610899600480360381019061089491906140e1565b61207a565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614148565b6123a4565b6040516108cf9190613a0b565b60405180910390f35b3480156108e457600080fd5b506108ed612438565b005b3480156108fb57600080fd5b506109166004803603810190610911919061393e565b61252b565b005b34801561092457600080fd5b5061092d612623565b005b610937612716565b73ffffffffffffffffffffffffffffffffffffffff16610955611783565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906141d4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750610b318261271e565b5b9050919050565b606060018054610b4890614223565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614223565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b610bd3612716565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611783565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906141d4565b60405180910390fd5b610c4f610df5565b600881905550565b6000610c6282612788565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906142c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce78261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90614359565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d77612716565b73ffffffffffffffffffffffffffffffffffffffff161480610da65750610da581610da0612716565b6123a4565b5b610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc906143eb565b60405180910390fd5b610df0838383612795565b505050565b60008054905090565b610e06612716565b73ffffffffffffffffffffffffffffffffffffffff16610e24611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906141d4565b60405180910390fd5b600c5482600b54610e8b919061443a565b1115610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614502565b60405180910390fd5b610ed68183612847565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f25919061443a565b9250508190555081600b6000828254610f3e919061443a565b925050819055505050565b610f54838383612865565b505050565b6000610f64836115be565b8210610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614594565b60405180910390fd5b6000610faf610df5565b905060008060005b83811015611109576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110fb57868414156110f2578195505050505050611145565b83806001019450505b508080600101915050610fb7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614626565b60405180910390fd5b92915050565b60126020528060005260406000206000915090505481565b600080308660405160200161117992919061468e565b6040516020818303038152906040528051906020012090506001816040516020016111a49190614732565b60405160208183030381529060405280519060200120868686604051600081526020016040526040516111da9493929190614776565b6020604051602081039080840390855afa1580156111fc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b611269612716565b73ffffffffffffffffffffffffffffffffffffffff16611287611783565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906141d4565b60405180910390fd5b80600a90805190602001906112f39291906137ef565b5050565b6112ff612716565b73ffffffffffffffffffffffffffffffffffffffff1661131d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906141d4565b60405180910390fd5b600061137d611a8a565b9050600081116113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b99061482d565b60405180910390fd5b6113e0736a2fbc3f859a1eaba4587a9f8ddc43fe0d31737c82612da5565b50565b6113fe83838360405180602001604052806000815250611d11565b505050565b600061140d612716565b73ffffffffffffffffffffffffffffffffffffffff1661142b611783565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906141d4565b60405180910390fd5b600b54600c54611491919061484d565b905090565b60006114a0610df5565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906148f3565b60405180910390fd5b819050919050565b600080600e5414156114fe5760009050611517565b6000600f5414156115125760019050611517565b600290505b90565b600061152582612e56565b600001519050919050565b6013805461153d90614223565b80601f016020809104026020016040519081016040528092919081815260200182805461156990614223565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614985565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116af612716565b73ffffffffffffffffffffffffffffffffffffffff166116cd611783565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906141d4565b60405180910390fd5b61172d6000612ff0565b565b600381565b600080601054141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614a17565b60405180910390fd5b601054905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117bc90614223565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890614223565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847612716565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614a83565b60405180910390fd5b80600660006118c2612716565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196f612716565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190613a0b565b60405180910390a35050565b6119c8612716565b73ffffffffffffffffffffffffffffffffffffffff166119e6611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906141d4565b60405180910390fd5b600060105414611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614b15565b60405180910390fd5b42601081905550565b6000611a94612716565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611783565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141d4565b60405180910390fd5b47905090565b6000601160009054906101000a900460ff16905090565b601160009054906101000a900460ff1615611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614b81565b60405180910390fd5b6000611b7f6114e9565b9050600280811115611b9457611b93613ebf565b5b816002811115611ba757611ba6613ebf565b5b14611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614bed565b60405180910390fd5b600b54600c54611bf7919061484d565b600854611c04919061484d565b82611c0d610df5565b611c17919061443a565b1115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614c59565b60405180910390fd5b81611c61611d6d565b611c6b9190614c79565b341015611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614d6b565b60405180910390fd5b611cb73383612847565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d06919061443a565b925050819055505050565b611d1c848484612865565b611d28848484846130b6565b611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614dfd565b60405180910390fd5b50505050565b600080611d786114e9565b905060006002811115611d8e57611d8d613ebf565b5b816002811115611da157611da0613ebf565b5b1480611dd1575060016002811115611dbc57611dbb613ebf565b5b816002811115611dcf57611dce613ebf565b5b145b15611de75767013fbe85edc90000915050611df4565b6701f161421c8e00009150505b90565b611dff612716565b73ffffffffffffffffffffffffffffffffffffffff16611e1d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906141d4565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b611ea7612716565b73ffffffffffffffffffffffffffffffffffffffff16611ec5611783565b73ffffffffffffffffffffffffffffffffffffffff1614611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f12906141d4565b60405180910390fd5b8060139080519060200190611f319291906137ef565b5050565b6060611f4082612788565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614e8f565b60405180910390fd5b6000601054141561201c5760138054611f9790614223565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc390614223565b80156120105780601f10611fe557610100808354040283529160200191612010565b820191906000526020600020905b815481529060010190602001808311611ff357829003601f168201915b50505050509050612075565b600061202661324d565b905060008151116120465760405180602001604052806000815250612071565b80612050846132df565b604051602001612061929190614f2c565b6040516020818303038152906040525b9150505b919050565b82828261208933848484611163565b6120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614fa7565b60405180910390fd5b601160009054906101000a900460ff1615612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614b81565b60405180910390fd5b60006121226114e9565b90506000600281111561213857612137613ebf565b5b81600281111561214b5761214a613ebf565b5b141561218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218390615013565b60405180910390fd5b60028081111561219f5761219e613ebf565b5b8160028111156121b2576121b1613ebf565b5b14156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea906150a5565b60405180910390fd5b600b54600954612203919061443a565b8861220c610df5565b612216919061443a565b1115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90615137565b60405180910390fd5b600388601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122a4919061443a565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906151c9565b60405180910390fd5b876122ee611d6d565b6122f89190614c79565b34101561233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190615281565b60405180910390fd5b6123443389612847565b87601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612393919061443a565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612440612716565b73ffffffffffffffffffffffffffffffffffffffff1661245e611783565b73ffffffffffffffffffffffffffffffffffffffff16146124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab906141d4565b60405180910390fd5b600060028111156124c8576124c7613ebf565b5b6124d06114e9565b60028111156124e2576124e1613ebf565b5b14612522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612519906152ed565b60405180910390fd5b42600e81905550565b612533612716565b73ffffffffffffffffffffffffffffffffffffffff16612551611783565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e906141d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061537f565b60405180910390fd5b61262081612ff0565b50565b61262b612716565b73ffffffffffffffffffffffffffffffffffffffff16612649611783565b73ffffffffffffffffffffffffffffffffffffffff161461269f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612696906141d4565b60405180910390fd5b600160028111156126b3576126b2613ebf565b5b6126bb6114e9565b60028111156126cd576126cc613ebf565b5b1461270d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612704906153eb565b60405180910390fd5b42600f81905550565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612861828260405180602001604052806000815250613440565b5050565b600061287082612e56565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612897612716565b73ffffffffffffffffffffffffffffffffffffffff1614806128f357506128bc612716565b73ffffffffffffffffffffffffffffffffffffffff166128db84610c57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290f575061290e8260000151612909612716565b6123a4565b5b905080612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129489061547d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba9061550f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a906155a1565b60405180910390fd5b612a408585856001613452565b612a506000848460000151612795565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d3557612c9481612788565b15612d345782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9e8585856001613458565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612dcb906155f2565b60006040518083038185875af1925050503d8060008114612e08576040519150601f19603f3d011682016040523d82523d6000602084013e612e0d565b606091505b5050905080612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890615653565b60405180910390fd5b505050565b612e5e613875565b612e6782612788565b612ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9d906156e5565b60405180910390fd5b60008290505b60008110612faf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fa0578092505050612feb565b50808060019003915050612eac565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290615777565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130d78473ffffffffffffffffffffffffffffffffffffffff1661345e565b15613240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613100612716565b8786866040518563ffffffff1660e01b815260040161312294939291906157ec565b602060405180830381600087803b15801561313c57600080fd5b505af192505050801561316d57506040513d601f19601f8201168201806040525081019061316a919061584d565b60015b6131f0573d806000811461319d576040519150601f19603f3d011682016040523d82523d6000602084013e6131a2565b606091505b506000815114156131e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131df90614dfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613245565b600190505b949350505050565b6060600a805461325c90614223565b80601f016020809104026020016040519081016040528092919081815260200182805461328890614223565b80156132d55780601f106132aa576101008083540402835291602001916132d5565b820191906000526020600020905b8154815290600101906020018083116132b857829003601f168201915b5050505050905090565b60606000821415613327576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061343b565b600082905060005b600082146133595780806133429061587a565b915050600a8261335291906158f2565b915061332f565b60008167ffffffffffffffff81111561337557613374613d4b565b5b6040519080825280601f01601f1916602001820160405280156133a75781602001600182028036833780820191505090505b5090505b60008514613434576001826133c0919061484d565b9150600a856133cf9190615923565b60306133db919061443a565b60f81b8183815181106133f1576133f0615954565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342d91906158f2565b94506133ab565b8093505050505b919050565b61344d8383836001613471565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de906159f5565b60405180910390fd5b600084141561352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615a87565b60405180910390fd5b6135386000868387613452565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137d257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137bd5761377d60008884886130b6565b6137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b390614dfd565b60405180910390fd5b5b81806001019250508080600101915050613706565b5080600081905550506137e86000868387613458565b5050505050565b8280546137fb90614223565b90600052602060002090601f01602090048101928261381d5760008555613864565b82601f1061383657805160ff1916838001178555613864565b82800160010185558215613864579182015b82811115613863578251825591602001919060010190613848565b5b50905061387191906138af565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138c85760008160009055506001016138b0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061390b826138e0565b9050919050565b61391b81613900565b811461392657600080fd5b50565b60008135905061393881613912565b92915050565b600060208284031215613954576139536138d6565b5b600061396284828501613929565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139a08161396b565b81146139ab57600080fd5b50565b6000813590506139bd81613997565b92915050565b6000602082840312156139d9576139d86138d6565b5b60006139e7848285016139ae565b91505092915050565b60008115159050919050565b613a05816139f0565b82525050565b6000602082019050613a2060008301846139fc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a60578082015181840152602081019050613a45565b83811115613a6f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a9182613a26565b613a9b8185613a31565b9350613aab818560208601613a42565b613ab481613a75565b840191505092915050565b60006020820190508181036000830152613ad98184613a86565b905092915050565b6000819050919050565b613af481613ae1565b8114613aff57600080fd5b50565b600081359050613b1181613aeb565b92915050565b600060208284031215613b2d57613b2c6138d6565b5b6000613b3b84828501613b02565b91505092915050565b613b4d81613900565b82525050565b6000602082019050613b686000830184613b44565b92915050565b60008060408385031215613b8557613b846138d6565b5b6000613b9385828601613929565b9250506020613ba485828601613b02565b9150509250929050565b613bb781613ae1565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b60008060408385031215613bef57613bee6138d6565b5b6000613bfd85828601613b02565b9250506020613c0e85828601613929565b9150509250929050565b600080600060608486031215613c3157613c306138d6565b5b6000613c3f86828701613929565b9350506020613c5086828701613929565b9250506040613c6186828701613b02565b9150509250925092565b600060ff82169050919050565b613c8181613c6b565b8114613c8c57600080fd5b50565b600081359050613c9e81613c78565b92915050565b6000819050919050565b613cb781613ca4565b8114613cc257600080fd5b50565b600081359050613cd481613cae565b92915050565b60008060008060808587031215613cf457613cf36138d6565b5b6000613d0287828801613929565b9450506020613d1387828801613c8f565b9350506040613d2487828801613cc5565b9250506060613d3587828801613cc5565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8382613a75565b810181811067ffffffffffffffff82111715613da257613da1613d4b565b5b80604052505050565b6000613db56138cc565b9050613dc18282613d7a565b919050565b600067ffffffffffffffff821115613de157613de0613d4b565b5b613dea82613a75565b9050602081019050919050565b82818337600083830152505050565b6000613e19613e1484613dc6565b613dab565b905082815260208101848484011115613e3557613e34613d46565b5b613e40848285613df7565b509392505050565b600082601f830112613e5d57613e5c613d41565b5b8135613e6d848260208601613e06565b91505092915050565b600060208284031215613e8c57613e8b6138d6565b5b600082013567ffffffffffffffff811115613eaa57613ea96138db565b5b613eb684828501613e48565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613eff57613efe613ebf565b5b50565b6000819050613f1082613eee565b919050565b6000613f2082613f02565b9050919050565b613f3081613f15565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a816139f0565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f936138d6565b5b6000613fa285828601613929565b9250506020613fb385828601613f68565b9150509250929050565b600067ffffffffffffffff821115613fd857613fd7613d4b565b5b613fe182613a75565b9050602081019050919050565b6000614001613ffc84613fbd565b613dab565b90508281526020810184848401111561401d5761401c613d46565b5b614028848285613df7565b509392505050565b600082601f83011261404557614044613d41565b5b8135614055848260208601613fee565b91505092915050565b60008060008060808587031215614078576140776138d6565b5b600061408687828801613929565b945050602061409787828801613929565b93505060406140a887828801613b02565b925050606085013567ffffffffffffffff8111156140c9576140c86138db565b5b6140d587828801614030565b91505092959194509250565b600080600080608085870312156140fb576140fa6138d6565b5b600061410987828801613b02565b945050602061411a87828801613c8f565b935050604061412b87828801613cc5565b925050606061413c87828801613cc5565b91505092959194509250565b6000806040838503121561415f5761415e6138d6565b5b600061416d85828601613929565b925050602061417e85828601613929565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141be602083613a31565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423b57607f821691505b6020821081141561424f5761424e6141f4565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006142b1602d83613a31565b91506142bc82614255565b604082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614343602283613a31565b915061434e826142e7565b604082019050919050565b6000602082019050818103600083015261437281614336565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006143d5603983613a31565b91506143e082614379565b604082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061444582613ae1565b915061445083613ae1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144855761448461440b565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006144ec602783613a31565b91506144f782614490565b604082019050919050565b6000602082019050818103600083015261451b816144df565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061457e602283613a31565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614610602e83613a31565b915061461b826145b4565b604082019050919050565b6000602082019050818103600083015261463f81614603565b9050919050565b60008160601b9050919050565b600061465e82614646565b9050919050565b600061467082614653565b9050919050565b61468861468382613900565b614665565b82525050565b600061469a8285614677565b6014820191506146aa8284614677565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006146fb601c836146ba565b9150614706826146c5565b601c82019050919050565b6000819050919050565b61472c61472782613ca4565b614711565b82525050565b600061473d826146ee565b9150614749828461471b565b60208201915081905092915050565b61476181613ca4565b82525050565b61477081613c6b565b82525050565b600060808201905061478b6000830187614758565b6147986020830186614767565b6147a56040830185614758565b6147b26060830184614758565b95945050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614817602283613a31565b9150614822826147bb565b604082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b600061485882613ae1565b915061486383613ae1565b9250828210156148765761487561440b565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148dd602383613a31565b91506148e882614881565b604082019050919050565b6000602082019050818103600083015261490c816148d0565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061496f602b83613a31565b915061497a82614913565b604082019050919050565b6000602082019050818103600083015261499e81614962565b9050919050565b7f4e46542052657665616c2054696d6520686173206e6f74206265656e2064657460008201527f65726d696e656420796574210000000000000000000000000000000000000000602082015250565b6000614a01602c83613a31565b9150614a0c826149a5565b604082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614a6d601a83613a31565b9150614a7882614a37565b602082019050919050565b60006020820190508181036000830152614a9c81614a60565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e207265766560008201527f616c656421000000000000000000000000000000000000000000000000000000602082015250565b6000614aff602583613a31565b9150614b0a82614aa3565b604082019050919050565b60006020820190508181036000830152614b2e81614af2565b9050919050565b7f53616c6520697320706175736564210000000000000000000000000000000000600082015250565b6000614b6b600f83613a31565b9150614b7682614b35565b602082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614bd7601c83613a31565b9150614be282614ba1565b602082019050919050565b60006020820190508181036000830152614c0681614bca565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614c43601e83613a31565b9150614c4e82614c0d565b602082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b6000614c8482613ae1565b9150614c8f83613ae1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc857614cc761440b565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e313420657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b6000614d55605183613a31565b9150614d6082614cd3565b606082019050919050565b60006020820190508181036000830152614d8481614d48565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614de7603383613a31565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e79602f83613a31565b9150614e8482614e1d565b604082019050919050565b60006020820190508181036000830152614ea881614e6c565b9050919050565b6000614eba82613a26565b614ec481856146ba565b9350614ed4818560208601613a42565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614f166005836146ba565b9150614f2182614ee0565b600582019050919050565b6000614f388285614eaf565b9150614f448284614eaf565b9150614f4f82614f09565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614f91601183613a31565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b6000614ffd601583613a31565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b600061508f602a83613a31565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7420696e2060008201527f50726573616c652e2e0000000000000000000000000000000000000000000000602082015250565b6000615121602983613a31565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f4d6178696d756d2033204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602483613a31565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303920657460208201527f6865722065616368204e46542900000000000000000000000000000000000000604082015250565b600061526b604d83613a31565b9150615276826151e9565b606082019050919050565b6000602082019050818103600083015261529a8161525e565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b60006152d7601583613a31565b91506152e2826152a1565b602082019050919050565b60006020820190508181036000830152615306816152ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615369602683613a31565b91506153748261530d565b604082019050919050565b600060208201905081810360008301526153988161535c565b9050919050565b7f53616c65206d75737420626520696e2050726573616c65210000000000000000600082015250565b60006153d5601883613a31565b91506153e08261539f565b602082019050919050565b60006020820190508181036000830152615404816153c8565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615467603283613a31565b91506154728261540b565b604082019050919050565b600060208201905081810360008301526154968161545a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006154f9602683613a31565b91506155048261549d565b604082019050919050565b60006020820190508181036000830152615528816154ec565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061558b602583613a31565b91506155968261552f565b604082019050919050565b600060208201905081810360008301526155ba8161557e565b9050919050565b600081905092915050565b50565b60006155dc6000836155c1565b91506155e7826155cc565b600082019050919050565b60006155fd826155cf565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061563d601483613a31565b915061564882615607565b602082019050919050565b6000602082019050818103600083015261566c81615630565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006156cf602a83613a31565b91506156da82615673565b604082019050919050565b600060208201905081810360008301526156fe816156c2565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615761602f83613a31565b915061576c82615705565b604082019050919050565b6000602082019050818103600083015261579081615754565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006157be82615797565b6157c881856157a2565b93506157d8818560208601613a42565b6157e181613a75565b840191505092915050565b60006080820190506158016000830187613b44565b61580e6020830186613b44565b61581b6040830185613bae565b818103606083015261582d81846157b3565b905095945050505050565b60008151905061584781613997565b92915050565b600060208284031215615863576158626138d6565b5b600061587184828501615838565b91505092915050565b600061588582613ae1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158b8576158b761440b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158fd82613ae1565b915061590883613ae1565b925082615918576159176158c3565b5b828204905092915050565b600061592e82613ae1565b915061593983613ae1565b925082615949576159486158c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006159df602183613a31565b91506159ea82615983565b604082019050919050565b60006020820190508181036000830152615a0e816159d2565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615a71602883613a31565b9150615a7c82615a15565b604082019050919050565b60006020820190508181036000830152615aa081615a64565b905091905056fea2646970667358221220ab60689158002a2d40ea655c8cdf7f0a8425ee4e2cc4f709743d9df172f9eb9564736f6c63430008090033

Deployed Bytecode Sourcemap

55014:8819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56986:8;;;62269:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41775:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43661:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61385:88;;;;;;;;;;;;;:::i;:::-;;45223:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44744:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40024:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61003:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46099:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40696:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56374:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58410:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57213:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61692:245;;;;;;;;;;;;;:::i;:::-;;46340:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62423:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40209:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62633:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43470:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56582:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42211:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4656:94;;;;;;;;;;;;;:::i;:::-;;55594:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63309:172;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4005:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43830:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45509:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63489:158;;;;;;;;;;;;;:::i;:::-;;61523:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63655:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59677:701;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46596:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62979:284;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63742:77;;;;;;;;;;;;;:::i;:::-;;57330:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60390:568;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58775:843;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57463:170;;;;;;;;;;;;;:::i;:::-;;4905:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57641:180;;;;;;;;;;;;;:::i;:::-;;62269:87;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62342:6:::1;62334:5;;:14;;;;;;;;;;;;;;;;;;62269:87:::0;:::o;41775:372::-;41877:4;41929:25;41914:40;;;:11;:40;;;;:105;;;;41986:33;41971:48;;;:11;:48;;;;41914:105;:172;;;;42051:35;42036:50;;;:11;:50;;;;41914:172;:225;;;;42103:36;42127:11;42103:23;:36::i;:::-;41914:225;41894:245;;41775:372;;;:::o;43661:100::-;43715:13;43748:5;43741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43661:100;:::o;61385:88::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61452:13:::1;:11;:13::i;:::-;61435:14;:30;;;;61385:88::o:0;45223:214::-;45291:7;45319:16;45327:7;45319;:16::i;:::-;45311:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45405:15;:24;45421:7;45405:24;;;;;;;;;;;;;;;;;;;;;45398:31;;45223:214;;;:::o;44744:413::-;44817:13;44833:24;44849:7;44833:15;:24::i;:::-;44817:40;;44882:5;44876:11;;:2;:11;;;;44868:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44977:5;44961:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44986:37;45003:5;45010:12;:10;:12::i;:::-;44986:16;:37::i;:::-;44961:62;44939:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45121:28;45130:2;45134:7;45143:5;45121:8;:28::i;:::-;44806:351;44744:413;;:::o;40024:108::-;40085:7;40112:12;;40105:19;;40024:108;:::o;61003:319::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61120:16:::1;;61110:6;61093:14;;:23;;;;:::i;:::-;:43;;61085:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;61193:28;61203:9;61214:6;61193:9;:28::i;:::-;61262:6;61232:15;:26;61248:9;61232:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;61297:6;61279:14;;:24;;;;;;;:::i;:::-;;;;;;;;61003:319:::0;;:::o;46099:170::-;46233:28;46243:4;46249:2;46253:7;46233:9;:28::i;:::-;46099:170;;;:::o;40696:1007::-;40785:7;40821:16;40831:5;40821:9;:16::i;:::-;40813:5;:24;40805:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40887:22;40912:13;:11;:13::i;:::-;40887:38;;40936:19;40966:25;41155:9;41150:466;41170:14;41166:1;:18;41150:466;;;41210:31;41244:11;:14;41256:1;41244:14;;;;;;;;;;;41210:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41307:1;41281:28;;:9;:14;;;:28;;;41277:111;;41354:9;:14;;;41334:34;;41277:111;41431:5;41410:26;;:17;:26;;;41406:195;;;41480:5;41465:11;:20;41461:85;;;41521:1;41514:8;;;;;;;;;41461:85;41568:13;;;;;;;41406:195;41191:425;41186:3;;;;;;;41150:466;;;;41639:56;;;;;;;;;;:::i;:::-;;;;;;;;40696:1007;;;;;:::o;56374:50::-;;;;;;;;;;;;;;;;;:::o;58410:306::-;58509:4;58526:12;58576:4;58583;58551:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58541:48;;;;;;58526:63;;58616:92;58689:4;58636:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;58626:69;;;;;;58697:2;58701;58705;58616:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58607:101;;:5;;;;;;;;;;;:101;;;58600:108;;;58410:306;;;;;;:::o;57213:109::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57306:8:::1;57288:15;:26;;;;;;;;;;;;:::i;:::-;;57213:109:::0;:::o;61692:245::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61740:15:::1;61758:16;:14;:16::i;:::-;61740:34;;61803:1;61793:7;:11;61785:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61856:72;61874:42;61920:7;61856:9;:72::i;:::-;61729:208;61692:245::o:0;46340:185::-;46478:39;46495:4;46501:2;46505:7;46478:39;;;;;;;;;;;;:16;:39::i;:::-;46340:185;;;:::o;62423:124::-;62482:4;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62525:14:::1;;62506:16;;:33;;;;:::i;:::-;62499:40;;62423:124:::0;:::o;40209:187::-;40276:7;40312:13;:11;:13::i;:::-;40304:5;:21;40296:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40383:5;40376:12;;40209:187;;;:::o;62633:297::-;62674:5;62716:1;62695:17;;:22;62691:232;;;62741:12;62734:19;;;;62691:232;62808:1;62784:20;;:25;62780:143;;;62833:13;62826:20;;;;62780:143;62895:16;62888:23;;62633:297;;:::o;43470:124::-;43534:7;43561:20;43573:7;43561:11;:20::i;:::-;:25;;;43554:32;;43470:124;;;:::o;56582:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42211:221::-;42275:7;42320:1;42303:19;;:5;:19;;;;42295:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42396:12;:19;42409:5;42396:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42388:36;;42381:43;;42211:221;;;:::o;4656:94::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4721:21:::1;4739:1;4721:9;:21::i;:::-;4656:94::o:0;55594:35::-;55628:1;55594:35;:::o;63309:172::-;63353:7;63395:1;63381:10;;:15;;63373:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;63463:10;;63456:17;;63309:172;:::o;4005:87::-;4051:7;4078:6;;;;;;;;;;;4071:13;;4005:87;:::o;43830:104::-;43886:13;43919:7;43912:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43830:104;:::o;45509:288::-;45616:12;:10;:12::i;:::-;45604:24;;:8;:24;;;;45596:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45717:8;45672:18;:32;45691:12;:10;:12::i;:::-;45672:32;;;;;;;;;;;;;;;:42;45705:8;45672:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45770:8;45741:48;;45756:12;:10;:12::i;:::-;45741:48;;;45780:8;45741:48;;;;;;:::i;:::-;;;;;;;;45509:288;;:::o;63489:158::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63557:1:::1;63543:10;;:15;63535:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63624:15;63611:10;:28;;;;63489:158::o:0;61523:109::-;61579:4;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61603:21:::1;61596:28;;61523:109:::0;:::o;63655:79::-;63695:4;63719:7;;;;;;;;;;;63712:14;;63655:79;:::o;59677:701::-;59752:7;;;;;;;;;;;59751:8;59743:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59790:16;59809:11;:9;:11::i;:::-;59790:30;;59853:16;59839:30;;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;59831:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;59984:14;;59965:16;;:33;;;;:::i;:::-;59947:14;;:52;;;;:::i;:::-;59937:6;59921:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:78;;59913:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;60188:6;60175:10;:8;:10::i;:::-;:19;;;;:::i;:::-;60162:9;:32;;60154:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;60293:29;60303:10;60315:6;60293:9;:29::i;:::-;60364:6;60333:15;:27;60349:10;60333:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;59732:646;59677:701;:::o;46596:355::-;46755:28;46765:4;46771:2;46775:7;46755:9;:28::i;:::-;46816:48;46839:4;46845:2;46849:7;46858:5;46816:22;:48::i;:::-;46794:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;46596:355;;;;:::o;62979:284::-;63019:4;63036:16;63055:11;:9;:11::i;:::-;63036:30;;63095:12;63081:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;:57;;;;63125:13;63111:27;;;;;;;;:::i;:::-;;:10;:27;;;;;;;;:::i;:::-;;;63081:57;63077:179;;;55461:10;63155:22;;;;;63077:179;55521:10;63219:25;;;62979:284;;:::o;63742:77::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63804:7:::1;;;;;;;;;;;63803:8;63793:7;;:18;;;;;;;;;;;;;;;;;;63742:77::o:0;57330:125::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57433:14:::1;57417:13;:30;;;;;;;;;;;;:::i;:::-;;57330:125:::0;:::o;60390:568::-;60464:13;60498:17;60506:8;60498:7;:17::i;:::-;60490:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;60693:1;60679:10;;:15;60675:272;;;60718:13;60711:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60675:272;60783:21;60807:10;:8;:10::i;:::-;60783:34;;60863:1;60845:7;60839:21;:25;:96;;;;;;;;;;;;;;;;;60891:7;60900:19;:8;:17;:19::i;:::-;60874:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60839:96;60832:103;;;60390:568;;;;:::o;58775:843::-;58862:2;58867;58871;57912:41;57933:10;57944:2;57947;57950;57912:20;:41::i;:::-;57903:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58910:7:::1;;;;;;;;;;;58909:8;58901:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58948:16;58967:11;:9;:11::i;:::-;58948:30;;59011:12;58997:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;;58989:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;59082:16;59068:30:::0;::::1;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;;59060:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59210:14;;59190:16;;:34;;;;:::i;:::-;59180:6;59164:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:60;;59156:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;55628:1;59319:6;59289:15;:27;59305:10;59289:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;59281:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;59422:6;59409:10;:8;:10::i;:::-;:19;;;;:::i;:::-;59396:9;:32;;59388:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;59531:29;59541:10;59553:6;59531:9;:29::i;:::-;59602:6;59571:15;:27;59587:10;59571:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;58890:728;58775:843:::0;;;;;;;:::o;45868:164::-;45965:4;45989:18;:25;46008:5;45989:25;;;;;;;;;;;;;;;:35;46015:8;45989:35;;;;;;;;;;;;;;;;;;;;;;;;;45982:42;;45868:164;;;;:::o;57463:170::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57541:12:::1;57526:27;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:27;;;;;;;;:::i;:::-;;;57518:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57610:15;57590:17;:35;;;;57463:170::o:0;4905:192::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5014:1:::1;4994:22;;:8;:22;;;;4986:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5070:19;5080:8;5070:9;:19::i;:::-;4905:192:::0;:::o;57641:180::-;4236:12;:10;:12::i;:::-;4225:23;;:7;:5;:7::i;:::-;:23;;;4217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57722:13:::1;57707:28;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:28;;;;;;;;:::i;:::-;;;57699:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57798:15;57775:20;:38;;;;57641:180::o:0;2793:98::-;2846:7;2873:10;2866:17;;2793:98;:::o;15987:157::-;16072:4;16111:25;16096:40;;;:11;:40;;;;16089:47;;15987:157;;;:::o;47206:111::-;47263:4;47297:12;;47287:7;:22;47280:29;;47206:111;;;:::o;52126:196::-;52268:2;52241:15;:24;52257:7;52241:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52306:7;52302:2;52286:28;;52295:5;52286:28;;;;;;;;;;;;52126:196;;;:::o;47325:104::-;47394:27;47404:2;47408:8;47394:27;;;;;;;;;;;;:9;:27::i;:::-;47325:104;;:::o;50006:2002::-;50121:35;50159:20;50171:7;50159:11;:20::i;:::-;50121:58;;50192:22;50234:13;:18;;;50218:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;50293:12;:10;:12::i;:::-;50269:36;;:20;50281:7;50269:11;:20::i;:::-;:36;;;50218:87;:154;;;;50322:50;50339:13;:18;;;50359:12;:10;:12::i;:::-;50322:16;:50::i;:::-;50218:154;50192:181;;50394:17;50386:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50509:4;50487:26;;:13;:18;;;:26;;;50479:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50589:1;50575:16;;:2;:16;;;;50567:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50646:43;50668:4;50674:2;50678:7;50687:1;50646:21;:43::i;:::-;50754:49;50771:1;50775:7;50784:13;:18;;;50754:8;:49::i;:::-;51129:1;51099:12;:18;51112:4;51099:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51173:1;51145:12;:16;51158:2;51145:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51219:2;51191:11;:20;51203:7;51191:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;51281:15;51236:11;:20;51248:7;51236:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;51549:19;51581:1;51571:7;:11;51549:33;;51642:1;51601:43;;:11;:24;51613:11;51601:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51597:295;;;51669:20;51677:11;51669:7;:20::i;:::-;51665:212;;;51746:13;:18;;;51714:11;:24;51726:11;51714:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;51829:13;:28;;;51787:11;:24;51799:11;51787:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;51665:212;51597:295;51074:829;51939:7;51935:2;51920:27;;51929:4;51920:27;;;;;;;;;;;;51958:42;51979:4;51985:2;51989:7;51998:1;51958:20;:42::i;:::-;50110:1898;;50006:2002;;;:::o;62012:183::-;62093:9;62108:7;:12;;62128:6;62108:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62092:47;;;62158:4;62150:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;62081:114;62012:183;;:::o;42871:537::-;42932:21;;:::i;:::-;42974:16;42982:7;42974;:16::i;:::-;42966:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43080:12;43095:7;43080:22;;43075:245;43112:1;43104:4;:9;43075:245;;43142:31;43176:11;:17;43188:4;43176:17;;;;;;;;;;;43142:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43242:1;43216:28;;:9;:14;;;:28;;;43212:93;;43276:9;43269:16;;;;;;43212:93;43123:197;43115:6;;;;;;;;43075:245;;;;43343:57;;;;;;;;;;:::i;:::-;;;;;;;;42871:537;;;;:::o;5105:173::-;5161:16;5180:6;;;;;;;;;;;5161:25;;5206:8;5197:6;;:17;;;;;;;;;;;;;;;;;;5261:8;5230:40;;5251:8;5230:40;;;;;;;;;;;;5150:128;5105:173;:::o;52887:804::-;53042:4;53063:15;:2;:13;;;:15::i;:::-;53059:625;;;53115:2;53099:36;;;53136:12;:10;:12::i;:::-;53150:4;53156:7;53165:5;53099:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53095:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53362:1;53345:6;:13;:18;53341:273;;;53388:61;;;;;;;;;;:::i;:::-;;;;;;;;53341:273;53564:6;53558:13;53549:6;53545:2;53541:15;53534:38;53095:534;53232:45;;;53222:55;;;:6;:55;;;;53215:62;;;;;53059:625;53668:4;53661:11;;52887:804;;;;;;;:::o;57039:116::-;57099:13;57132:15;57125:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57039:116;:::o;409:723::-;465:13;695:1;686:5;:10;682:53;;;713:10;;;;;;;;;;;;;;;;;;;;;682:53;745:12;760:5;745:20;;776:14;801:78;816:1;808:4;:9;801:78;;834:8;;;;;:::i;:::-;;;;865:2;857:10;;;;;:::i;:::-;;;801:78;;;889:19;921:6;911:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;889:39;;939:154;955:1;946:5;:10;939:154;;983:1;973:11;;;;;:::i;:::-;;;1050:2;1042:5;:10;;;;:::i;:::-;1029:2;:24;;;;:::i;:::-;1016:39;;999:6;1006;999:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1079:2;1070:11;;;;;:::i;:::-;;;939:154;;;1117:6;1103:21;;;;;409:723;;;;:::o;47792:163::-;47915:32;47921:2;47925:8;47935:5;47942:4;47915:5;:32::i;:::-;47792:163;;;:::o;54179:159::-;;;;;:::o;54750:158::-;;;;;:::o;6051:387::-;6111:4;6319:12;6386:7;6374:20;6366:28;;6429:1;6422:4;:8;6415:15;;;6051:387;;;:::o;48214:1538::-;48353:20;48376:12;;48353:35;;48421:1;48407:16;;:2;:16;;;;48399:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48492:1;48480:8;:13;;48472:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48551:61;48581:1;48585:2;48589:12;48603:8;48551:21;:61::i;:::-;48926:8;48890:12;:16;48903:2;48890:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48991:8;48950:12;:16;48963:2;48950:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49050:2;49017:11;:25;49029:12;49017:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49117:15;49067:11;:25;49079:12;49067:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;49150:20;49173:12;49150:35;;49207:9;49202:415;49222:8;49218:1;:12;49202:415;;;49286:12;49282:2;49261:38;;49278:1;49261:38;;;;;;;;;;;;49322:4;49318:249;;;49385:59;49416:1;49420:2;49424:12;49438:5;49385:22;:59::i;:::-;49351:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;49318:249;49587:14;;;;;;;49232:3;;;;;;;49202:415;;;;49648:12;49633;:27;;;;48865:807;49684:60;49713:1;49717:2;49721:12;49735:8;49684:20;:60::i;:::-;48342:1410;48214:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:149::-;1212:7;1252:66;1245:5;1241:78;1230:89;;1176:149;;;:::o;1331:120::-;1403:23;1420:5;1403:23;:::i;:::-;1396:5;1393:34;1383:62;;1441:1;1438;1431:12;1383:62;1331:120;:::o;1457:137::-;1502:5;1540:6;1527:20;1518:29;;1556:32;1582:5;1556:32;:::i;:::-;1457:137;;;;:::o;1600:327::-;1658:6;1707:2;1695:9;1686:7;1682:23;1678:32;1675:119;;;1713:79;;:::i;:::-;1675:119;1833:1;1858:52;1902:7;1893:6;1882:9;1878:22;1858:52;:::i;:::-;1848:62;;1804:116;1600:327;;;;:::o;1933:90::-;1967:7;2010:5;2003:13;1996:21;1985:32;;1933:90;;;:::o;2029:109::-;2110:21;2125:5;2110:21;:::i;:::-;2105:3;2098:34;2029:109;;:::o;2144:210::-;2231:4;2269:2;2258:9;2254:18;2246:26;;2282:65;2344:1;2333:9;2329:17;2320:6;2282:65;:::i;:::-;2144:210;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:77::-;3787:7;3816:5;3805:16;;3750:77;;;:::o;3833:122::-;3906:24;3924:5;3906:24;:::i;:::-;3899:5;3896:35;3886:63;;3945:1;3942;3935:12;3886:63;3833:122;:::o;3961:139::-;4007:5;4045:6;4032:20;4023:29;;4061:33;4088:5;4061:33;:::i;:::-;3961:139;;;;:::o;4106:329::-;4165:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:119;;;4220:79;;:::i;:::-;4182:119;4340:1;4365:53;4410:7;4401:6;4390:9;4386:22;4365:53;:::i;:::-;4355:63;;4311:117;4106:329;;;;:::o;4441:118::-;4528:24;4546:5;4528:24;:::i;:::-;4523:3;4516:37;4441:118;;:::o;4565:222::-;4658:4;4696:2;4685:9;4681:18;4673:26;;4709:71;4777:1;4766:9;4762:17;4753:6;4709:71;:::i;:::-;4565:222;;;;:::o;4793:474::-;4861:6;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4793:474;;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:474::-;5693:6;5701;5750:2;5738:9;5729:7;5725:23;5721:32;5718:119;;;5756:79;;:::i;:::-;5718:119;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;6003:2;6029:53;6074:7;6065:6;6054:9;6050:22;6029:53;:::i;:::-;6019:63;;5974:118;5625:474;;;;;:::o;6105:619::-;6182:6;6190;6198;6247:2;6235:9;6226:7;6222:23;6218:32;6215:119;;;6253:79;;:::i;:::-;6215:119;6373:1;6398:53;6443:7;6434:6;6423:9;6419:22;6398:53;:::i;:::-;6388:63;;6344:117;6500:2;6526:53;6571:7;6562:6;6551:9;6547:22;6526:53;:::i;:::-;6516:63;;6471:118;6628:2;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6599:118;6105:619;;;;;:::o;6730:86::-;6765:7;6805:4;6798:5;6794:16;6783:27;;6730:86;;;:::o;6822:118::-;6893:22;6909:5;6893:22;:::i;:::-;6886:5;6883:33;6873:61;;6930:1;6927;6920:12;6873:61;6822:118;:::o;6946:135::-;6990:5;7028:6;7015:20;7006:29;;7044:31;7069:5;7044:31;:::i;:::-;6946:135;;;;:::o;7087:77::-;7124:7;7153:5;7142:16;;7087:77;;;:::o;7170:122::-;7243:24;7261:5;7243:24;:::i;:::-;7236:5;7233:35;7223:63;;7282:1;7279;7272:12;7223:63;7170:122;:::o;7298:139::-;7344:5;7382:6;7369:20;7360:29;;7398:33;7425:5;7398:33;:::i;:::-;7298:139;;;;:::o;7443:761::-;7527:6;7535;7543;7551;7600:3;7588:9;7579:7;7575:23;7571:33;7568:120;;;7607:79;;:::i;:::-;7568:120;7727:1;7752:53;7797:7;7788:6;7777:9;7773:22;7752:53;:::i;:::-;7742:63;;7698:117;7854:2;7880:51;7923:7;7914:6;7903:9;7899:22;7880:51;:::i;:::-;7870:61;;7825:116;7980:2;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7951:118;8108:2;8134:53;8179:7;8170:6;8159:9;8155:22;8134:53;:::i;:::-;8124:63;;8079:118;7443:761;;;;;;;:::o;8210:117::-;8319:1;8316;8309:12;8333:117;8442:1;8439;8432:12;8456:180;8504:77;8501:1;8494:88;8601:4;8598:1;8591:15;8625:4;8622:1;8615:15;8642:281;8725:27;8747:4;8725:27;:::i;:::-;8717:6;8713:40;8855:6;8843:10;8840:22;8819:18;8807:10;8804:34;8801:62;8798:88;;;8866:18;;:::i;:::-;8798:88;8906:10;8902:2;8895:22;8685:238;8642:281;;:::o;8929:129::-;8963:6;8990:20;;:::i;:::-;8980:30;;9019:33;9047:4;9039:6;9019:33;:::i;:::-;8929:129;;;:::o;9064:308::-;9126:4;9216:18;9208:6;9205:30;9202:56;;;9238:18;;:::i;:::-;9202:56;9276:29;9298:6;9276:29;:::i;:::-;9268:37;;9360:4;9354;9350:15;9342:23;;9064:308;;;:::o;9378:154::-;9462:6;9457:3;9452;9439:30;9524:1;9515:6;9510:3;9506:16;9499:27;9378:154;;;:::o;9538:412::-;9616:5;9641:66;9657:49;9699:6;9657:49;:::i;:::-;9641:66;:::i;:::-;9632:75;;9730:6;9723:5;9716:21;9768:4;9761:5;9757:16;9806:3;9797:6;9792:3;9788:16;9785:25;9782:112;;;9813:79;;:::i;:::-;9782:112;9903:41;9937:6;9932:3;9927;9903:41;:::i;:::-;9622:328;9538:412;;;;;:::o;9970:340::-;10026:5;10075:3;10068:4;10060:6;10056:17;10052:27;10042:122;;10083:79;;:::i;:::-;10042:122;10200:6;10187:20;10225:79;10300:3;10292:6;10285:4;10277:6;10273:17;10225:79;:::i;:::-;10216:88;;10032:278;9970:340;;;;:::o;10316:509::-;10385:6;10434:2;10422:9;10413:7;10409:23;10405:32;10402:119;;;10440:79;;:::i;:::-;10402:119;10588:1;10577:9;10573:17;10560:31;10618:18;10610:6;10607:30;10604:117;;;10640:79;;:::i;:::-;10604:117;10745:63;10800:7;10791:6;10780:9;10776:22;10745:63;:::i;:::-;10735:73;;10531:287;10316:509;;;;:::o;10831:180::-;10879:77;10876:1;10869:88;10976:4;10973:1;10966:15;11000:4;10997:1;10990:15;11017:115;11100:1;11093:5;11090:12;11080:46;;11106:18;;:::i;:::-;11080:46;11017:115;:::o;11138:131::-;11185:7;11214:5;11203:16;;11220:43;11257:5;11220:43;:::i;:::-;11138:131;;;:::o;11275:::-;11333:9;11366:34;11394:5;11366:34;:::i;:::-;11353:47;;11275:131;;;:::o;11412:147::-;11507:45;11546:5;11507:45;:::i;:::-;11502:3;11495:58;11412:147;;:::o;11565:238::-;11666:4;11704:2;11693:9;11689:18;11681:26;;11717:79;11793:1;11782:9;11778:17;11769:6;11717:79;:::i;:::-;11565:238;;;;:::o;11809:116::-;11879:21;11894:5;11879:21;:::i;:::-;11872:5;11869:32;11859:60;;11915:1;11912;11905:12;11859:60;11809:116;:::o;11931:133::-;11974:5;12012:6;11999:20;11990:29;;12028:30;12052:5;12028:30;:::i;:::-;11931:133;;;;:::o;12070:468::-;12135:6;12143;12192:2;12180:9;12171:7;12167:23;12163:32;12160:119;;;12198:79;;:::i;:::-;12160:119;12318:1;12343:53;12388:7;12379:6;12368:9;12364:22;12343:53;:::i;:::-;12333:63;;12289:117;12445:2;12471:50;12513:7;12504:6;12493:9;12489:22;12471:50;:::i;:::-;12461:60;;12416:115;12070:468;;;;;:::o;12544:307::-;12605:4;12695:18;12687:6;12684:30;12681:56;;;12717:18;;:::i;:::-;12681:56;12755:29;12777:6;12755:29;:::i;:::-;12747:37;;12839:4;12833;12829:15;12821:23;;12544:307;;;:::o;12857:410::-;12934:5;12959:65;12975:48;13016:6;12975:48;:::i;:::-;12959:65;:::i;:::-;12950:74;;13047:6;13040:5;13033:21;13085:4;13078:5;13074:16;13123:3;13114:6;13109:3;13105:16;13102:25;13099:112;;;13130:79;;:::i;:::-;13099:112;13220:41;13254:6;13249:3;13244;13220:41;:::i;:::-;12940:327;12857:410;;;;;:::o;13286:338::-;13341:5;13390:3;13383:4;13375:6;13371:17;13367:27;13357:122;;13398:79;;:::i;:::-;13357:122;13515:6;13502:20;13540:78;13614:3;13606:6;13599:4;13591:6;13587:17;13540:78;:::i;:::-;13531:87;;13347:277;13286:338;;;;:::o;13630:943::-;13725:6;13733;13741;13749;13798:3;13786:9;13777:7;13773:23;13769:33;13766:120;;;13805:79;;:::i;:::-;13766:120;13925:1;13950:53;13995:7;13986:6;13975:9;13971:22;13950:53;:::i;:::-;13940:63;;13896:117;14052:2;14078:53;14123:7;14114:6;14103:9;14099:22;14078:53;:::i;:::-;14068:63;;14023:118;14180:2;14206:53;14251:7;14242:6;14231:9;14227:22;14206:53;:::i;:::-;14196:63;;14151:118;14336:2;14325:9;14321:18;14308:32;14367:18;14359:6;14356:30;14353:117;;;14389:79;;:::i;:::-;14353:117;14494:62;14548:7;14539:6;14528:9;14524:22;14494:62;:::i;:::-;14484:72;;14279:287;13630:943;;;;;;;:::o;14579:761::-;14663:6;14671;14679;14687;14736:3;14724:9;14715:7;14711:23;14707:33;14704:120;;;14743:79;;:::i;:::-;14704:120;14863:1;14888:53;14933:7;14924:6;14913:9;14909:22;14888:53;:::i;:::-;14878:63;;14834:117;14990:2;15016:51;15059:7;15050:6;15039:9;15035:22;15016:51;:::i;:::-;15006:61;;14961:116;15116:2;15142:53;15187:7;15178:6;15167:9;15163:22;15142:53;:::i;:::-;15132:63;;15087:118;15244:2;15270:53;15315:7;15306:6;15295:9;15291:22;15270:53;:::i;:::-;15260:63;;15215:118;14579:761;;;;;;;:::o;15346:474::-;15414:6;15422;15471:2;15459:9;15450:7;15446:23;15442:32;15439:119;;;15477:79;;:::i;:::-;15439:119;15597:1;15622:53;15667:7;15658:6;15647:9;15643:22;15622:53;:::i;:::-;15612:63;;15568:117;15724:2;15750:53;15795:7;15786:6;15775:9;15771:22;15750:53;:::i;:::-;15740:63;;15695:118;15346:474;;;;;:::o;15826:182::-;15966:34;15962:1;15954:6;15950:14;15943:58;15826:182;:::o;16014:366::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:419::-;16552:4;16590:2;16579:9;16575:18;16567:26;;16639:9;16633:4;16629:20;16625:1;16614:9;16610:17;16603:47;16667:131;16793:4;16667:131;:::i;:::-;16659:139;;16386:419;;;:::o;16811:180::-;16859:77;16856:1;16849:88;16956:4;16953:1;16946:15;16980:4;16977:1;16970:15;16997:320;17041:6;17078:1;17072:4;17068:12;17058:22;;17125:1;17119:4;17115:12;17146:18;17136:81;;17202:4;17194:6;17190:17;17180:27;;17136:81;17264:2;17256:6;17253:14;17233:18;17230:38;17227:84;;;17283:18;;:::i;:::-;17227:84;17048:269;16997:320;;;:::o;17323:232::-;17463:34;17459:1;17451:6;17447:14;17440:58;17532:15;17527:2;17519:6;17515:15;17508:40;17323:232;:::o;17561:366::-;17703:3;17724:67;17788:2;17783:3;17724:67;:::i;:::-;17717:74;;17800:93;17889:3;17800:93;:::i;:::-;17918:2;17913:3;17909:12;17902:19;;17561:366;;;:::o;17933:419::-;18099:4;18137:2;18126:9;18122:18;18114:26;;18186:9;18180:4;18176:20;18172:1;18161:9;18157:17;18150:47;18214:131;18340:4;18214:131;:::i;:::-;18206:139;;17933:419;;;:::o;18358:221::-;18498:34;18494:1;18486:6;18482:14;18475:58;18567:4;18562:2;18554:6;18550:15;18543:29;18358:221;:::o;18585:366::-;18727:3;18748:67;18812:2;18807:3;18748:67;:::i;:::-;18741:74;;18824:93;18913:3;18824:93;:::i;:::-;18942:2;18937:3;18933:12;18926:19;;18585:366;;;:::o;18957:419::-;19123:4;19161:2;19150:9;19146:18;19138:26;;19210:9;19204:4;19200:20;19196:1;19185:9;19181:17;19174:47;19238:131;19364:4;19238:131;:::i;:::-;19230:139;;18957:419;;;:::o;19382:244::-;19522:34;19518:1;19510:6;19506:14;19499:58;19591:27;19586:2;19578:6;19574:15;19567:52;19382:244;:::o;19632:366::-;19774:3;19795:67;19859:2;19854:3;19795:67;:::i;:::-;19788:74;;19871:93;19960:3;19871:93;:::i;:::-;19989:2;19984:3;19980:12;19973:19;;19632:366;;;:::o;20004:419::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:180::-;20477:77;20474:1;20467:88;20574:4;20571:1;20564:15;20598:4;20595:1;20588:15;20615:305;20655:3;20674:20;20692:1;20674:20;:::i;:::-;20669:25;;20708:20;20726:1;20708:20;:::i;:::-;20703:25;;20862:1;20794:66;20790:74;20787:1;20784:81;20781:107;;;20868:18;;:::i;:::-;20781:107;20912:1;20909;20905:9;20898:16;;20615:305;;;;:::o;20926:226::-;21066:34;21062:1;21054:6;21050:14;21043:58;21135:9;21130:2;21122:6;21118:15;21111:34;20926:226;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:221::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:4;22159:2;22151:6;22147:15;22140:29;21955:221;:::o;22182:366::-;22324:3;22345:67;22409:2;22404:3;22345:67;:::i;:::-;22338:74;;22421:93;22510:3;22421:93;:::i;:::-;22539:2;22534:3;22530:12;22523:19;;22182:366;;;:::o;22554:419::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:233::-;23119:34;23115:1;23107:6;23103:14;23096:58;23188:16;23183:2;23175:6;23171:15;23164:41;22979:233;:::o;23218:366::-;23360:3;23381:67;23445:2;23440:3;23381:67;:::i;:::-;23374:74;;23457:93;23546:3;23457:93;:::i;:::-;23575:2;23570:3;23566:12;23559:19;;23218:366;;;:::o;23590:419::-;23756:4;23794:2;23783:9;23779:18;23771:26;;23843:9;23837:4;23833:20;23829:1;23818:9;23814:17;23807:47;23871:131;23997:4;23871:131;:::i;:::-;23863:139;;23590:419;;;:::o;24015:94::-;24048:8;24096:5;24092:2;24088:14;24067:35;;24015:94;;;:::o;24115:::-;24154:7;24183:20;24197:5;24183:20;:::i;:::-;24172:31;;24115:94;;;:::o;24215:100::-;24254:7;24283:26;24303:5;24283:26;:::i;:::-;24272:37;;24215:100;;;:::o;24321:157::-;24426:45;24446:24;24464:5;24446:24;:::i;:::-;24426:45;:::i;:::-;24421:3;24414:58;24321:157;;:::o;24484:397::-;24624:3;24639:75;24710:3;24701:6;24639:75;:::i;:::-;24739:2;24734:3;24730:12;24723:19;;24752:75;24823:3;24814:6;24752:75;:::i;:::-;24852:2;24847:3;24843:12;24836:19;;24872:3;24865:10;;24484:397;;;;;:::o;24887:148::-;24989:11;25026:3;25011:18;;24887:148;;;;:::o;25041:214::-;25181:66;25177:1;25169:6;25165:14;25158:90;25041:214;:::o;25261:402::-;25421:3;25442:85;25524:2;25519:3;25442:85;:::i;:::-;25435:92;;25536:93;25625:3;25536:93;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25261:402;;;:::o;25669:79::-;25708:7;25737:5;25726:16;;25669:79;;;:::o;25754:157::-;25859:45;25879:24;25897:5;25879:24;:::i;:::-;25859:45;:::i;:::-;25854:3;25847:58;25754:157;;:::o;25917:522::-;26130:3;26152:148;26296:3;26152:148;:::i;:::-;26145:155;;26310:75;26381:3;26372:6;26310:75;:::i;:::-;26410:2;26405:3;26401:12;26394:19;;26430:3;26423:10;;25917:522;;;;:::o;26445:118::-;26532:24;26550:5;26532:24;:::i;:::-;26527:3;26520:37;26445:118;;:::o;26569:112::-;26652:22;26668:5;26652:22;:::i;:::-;26647:3;26640:35;26569:112;;:::o;26687:545::-;26860:4;26898:3;26887:9;26883:19;26875:27;;26912:71;26980:1;26969:9;26965:17;26956:6;26912:71;:::i;:::-;26993:68;27057:2;27046:9;27042:18;27033:6;26993:68;:::i;:::-;27071:72;27139:2;27128:9;27124:18;27115:6;27071:72;:::i;:::-;27153;27221:2;27210:9;27206:18;27197:6;27153:72;:::i;:::-;26687:545;;;;;;;:::o;27238:221::-;27378:34;27374:1;27366:6;27362:14;27355:58;27447:4;27442:2;27434:6;27430:15;27423:29;27238:221;:::o;27465:366::-;27607:3;27628:67;27692:2;27687:3;27628:67;:::i;:::-;27621:74;;27704:93;27793:3;27704:93;:::i;:::-;27822:2;27817:3;27813:12;27806:19;;27465:366;;;:::o;27837:419::-;28003:4;28041:2;28030:9;28026:18;28018:26;;28090:9;28084:4;28080:20;28076:1;28065:9;28061:17;28054:47;28118:131;28244:4;28118:131;:::i;:::-;28110:139;;27837:419;;;:::o;28262:191::-;28302:4;28322:20;28340:1;28322:20;:::i;:::-;28317:25;;28356:20;28374:1;28356:20;:::i;:::-;28351:25;;28395:1;28392;28389:8;28386:34;;;28400:18;;:::i;:::-;28386:34;28445:1;28442;28438:9;28430:17;;28262:191;;;;:::o;28459:222::-;28599:34;28595:1;28587:6;28583:14;28576:58;28668:5;28663:2;28655:6;28651:15;28644:30;28459:222;:::o;28687:366::-;28829:3;28850:67;28914:2;28909:3;28850:67;:::i;:::-;28843:74;;28926:93;29015:3;28926:93;:::i;:::-;29044:2;29039:3;29035:12;29028:19;;28687:366;;;:::o;29059:419::-;29225:4;29263:2;29252:9;29248:18;29240:26;;29312:9;29306:4;29302:20;29298:1;29287:9;29283:17;29276:47;29340:131;29466:4;29340:131;:::i;:::-;29332:139;;29059:419;;;:::o;29484:230::-;29624:34;29620:1;29612:6;29608:14;29601:58;29693:13;29688:2;29680:6;29676:15;29669:38;29484:230;:::o;29720:366::-;29862:3;29883:67;29947:2;29942:3;29883:67;:::i;:::-;29876:74;;29959:93;30048:3;29959:93;:::i;:::-;30077:2;30072:3;30068:12;30061:19;;29720:366;;;:::o;30092:419::-;30258:4;30296:2;30285:9;30281:18;30273:26;;30345:9;30339:4;30335:20;30331:1;30320:9;30316:17;30309:47;30373:131;30499:4;30373:131;:::i;:::-;30365:139;;30092:419;;;:::o;30517:231::-;30657:34;30653:1;30645:6;30641:14;30634:58;30726:14;30721:2;30713:6;30709:15;30702:39;30517:231;:::o;30754:366::-;30896:3;30917:67;30981:2;30976:3;30917:67;:::i;:::-;30910:74;;30993:93;31082:3;30993:93;:::i;:::-;31111:2;31106:3;31102:12;31095:19;;30754:366;;;:::o;31126:419::-;31292:4;31330:2;31319:9;31315:18;31307:26;;31379:9;31373:4;31369:20;31365:1;31354:9;31350:17;31343:47;31407:131;31533:4;31407:131;:::i;:::-;31399:139;;31126:419;;;:::o;31551:176::-;31691:28;31687:1;31679:6;31675:14;31668:52;31551:176;:::o;31733:366::-;31875:3;31896:67;31960:2;31955:3;31896:67;:::i;:::-;31889:74;;31972:93;32061:3;31972:93;:::i;:::-;32090:2;32085:3;32081:12;32074:19;;31733:366;;;:::o;32105:419::-;32271:4;32309:2;32298:9;32294:18;32286:26;;32358:9;32352:4;32348:20;32344:1;32333:9;32329:17;32322:47;32386:131;32512:4;32386:131;:::i;:::-;32378:139;;32105:419;;;:::o;32530:224::-;32670:34;32666:1;32658:6;32654:14;32647:58;32739:7;32734:2;32726:6;32722:15;32715:32;32530:224;:::o;32760:366::-;32902:3;32923:67;32987:2;32982:3;32923:67;:::i;:::-;32916:74;;32999:93;33088:3;32999:93;:::i;:::-;33117:2;33112:3;33108:12;33101:19;;32760:366;;;:::o;33132:419::-;33298:4;33336:2;33325:9;33321:18;33313:26;;33385:9;33379:4;33375:20;33371:1;33360:9;33356:17;33349:47;33413:131;33539:4;33413:131;:::i;:::-;33405:139;;33132:419;;;:::o;33557:165::-;33697:17;33693:1;33685:6;33681:14;33674:41;33557:165;:::o;33728:366::-;33870:3;33891:67;33955:2;33950:3;33891:67;:::i;:::-;33884:74;;33967:93;34056:3;33967:93;:::i;:::-;34085:2;34080:3;34076:12;34069:19;;33728:366;;;:::o;34100:419::-;34266:4;34304:2;34293:9;34289:18;34281:26;;34353:9;34347:4;34343:20;34339:1;34328:9;34324:17;34317:47;34381:131;34507:4;34381:131;:::i;:::-;34373:139;;34100:419;;;:::o;34525:178::-;34665:30;34661:1;34653:6;34649:14;34642:54;34525:178;:::o;34709:366::-;34851:3;34872:67;34936:2;34931:3;34872:67;:::i;:::-;34865:74;;34948:93;35037:3;34948:93;:::i;:::-;35066:2;35061:3;35057:12;35050:19;;34709:366;;;:::o;35081:419::-;35247:4;35285:2;35274:9;35270:18;35262:26;;35334:9;35328:4;35324:20;35320:1;35309:9;35305:17;35298:47;35362:131;35488:4;35362:131;:::i;:::-;35354:139;;35081:419;;;:::o;35506:180::-;35646:32;35642:1;35634:6;35630:14;35623:56;35506:180;:::o;35692:366::-;35834:3;35855:67;35919:2;35914:3;35855:67;:::i;:::-;35848:74;;35931:93;36020:3;35931:93;:::i;:::-;36049:2;36044:3;36040:12;36033:19;;35692:366;;;:::o;36064:419::-;36230:4;36268:2;36257:9;36253:18;36245:26;;36317:9;36311:4;36307:20;36303:1;36292:9;36288:17;36281:47;36345:131;36471:4;36345:131;:::i;:::-;36337:139;;36064:419;;;:::o;36489:348::-;36529:7;36552:20;36570:1;36552:20;:::i;:::-;36547:25;;36586:20;36604:1;36586:20;:::i;:::-;36581:25;;36774:1;36706:66;36702:74;36699:1;36696:81;36691:1;36684:9;36677:17;36673:105;36670:131;;;36781:18;;:::i;:::-;36670:131;36829:1;36826;36822:9;36811:20;;36489:348;;;;:::o;36843:305::-;36983:34;36979:1;36971:6;36967:14;36960:58;37052:34;37047:2;37039:6;37035:15;37028:59;37121:19;37116:2;37108:6;37104:15;37097:44;36843:305;:::o;37154:366::-;37296:3;37317:67;37381:2;37376:3;37317:67;:::i;:::-;37310:74;;37393:93;37482:3;37393:93;:::i;:::-;37511:2;37506:3;37502:12;37495:19;;37154:366;;;:::o;37526:419::-;37692:4;37730:2;37719:9;37715:18;37707:26;;37779:9;37773:4;37769:20;37765:1;37754:9;37750:17;37743:47;37807:131;37933:4;37807:131;:::i;:::-;37799:139;;37526:419;;;:::o;37951:238::-;38091:34;38087:1;38079:6;38075:14;38068:58;38160:21;38155:2;38147:6;38143:15;38136:46;37951:238;:::o;38195:366::-;38337:3;38358:67;38422:2;38417:3;38358:67;:::i;:::-;38351:74;;38434:93;38523:3;38434:93;:::i;:::-;38552:2;38547:3;38543:12;38536:19;;38195:366;;;:::o;38567:419::-;38733:4;38771:2;38760:9;38756:18;38748:26;;38820:9;38814:4;38810:20;38806:1;38795:9;38791:17;38784:47;38848:131;38974:4;38848:131;:::i;:::-;38840:139;;38567:419;;;:::o;38992:234::-;39132:34;39128:1;39120:6;39116:14;39109:58;39201:17;39196:2;39188:6;39184:15;39177:42;38992:234;:::o;39232:366::-;39374:3;39395:67;39459:2;39454:3;39395:67;:::i;:::-;39388:74;;39471:93;39560:3;39471:93;:::i;:::-;39589:2;39584:3;39580:12;39573:19;;39232:366;;;:::o;39604:419::-;39770:4;39808:2;39797:9;39793:18;39785:26;;39857:9;39851:4;39847:20;39843:1;39832:9;39828:17;39821:47;39885:131;40011:4;39885:131;:::i;:::-;39877:139;;39604:419;;;:::o;40029:377::-;40135:3;40163:39;40196:5;40163:39;:::i;:::-;40218:89;40300:6;40295:3;40218:89;:::i;:::-;40211:96;;40316:52;40361:6;40356:3;40349:4;40342:5;40338:16;40316:52;:::i;:::-;40393:6;40388:3;40384:16;40377:23;;40139:267;40029:377;;;;:::o;40412:155::-;40552:7;40548:1;40540:6;40536:14;40529:31;40412:155;:::o;40573:400::-;40733:3;40754:84;40836:1;40831:3;40754:84;:::i;:::-;40747:91;;40847:93;40936:3;40847:93;:::i;:::-;40965:1;40960:3;40956:11;40949:18;;40573:400;;;:::o;40979:701::-;41260:3;41282:95;41373:3;41364:6;41282:95;:::i;:::-;41275:102;;41394:95;41485:3;41476:6;41394:95;:::i;:::-;41387:102;;41506:148;41650:3;41506:148;:::i;:::-;41499:155;;41671:3;41664:10;;40979:701;;;;;:::o;41686:167::-;41826:19;41822:1;41814:6;41810:14;41803:43;41686:167;:::o;41859:366::-;42001:3;42022:67;42086:2;42081:3;42022:67;:::i;:::-;42015:74;;42098:93;42187:3;42098:93;:::i;:::-;42216:2;42211:3;42207:12;42200:19;;41859:366;;;:::o;42231:419::-;42397:4;42435:2;42424:9;42420:18;42412:26;;42484:9;42478:4;42474:20;42470:1;42459:9;42455:17;42448:47;42512:131;42638:4;42512:131;:::i;:::-;42504:139;;42231:419;;;:::o;42656:171::-;42796:23;42792:1;42784:6;42780:14;42773:47;42656:171;:::o;42833:366::-;42975:3;42996:67;43060:2;43055:3;42996:67;:::i;:::-;42989:74;;43072:93;43161:3;43072:93;:::i;:::-;43190:2;43185:3;43181:12;43174:19;;42833:366;;;:::o;43205:419::-;43371:4;43409:2;43398:9;43394:18;43386:26;;43458:9;43452:4;43448:20;43444:1;43433:9;43429:17;43422:47;43486:131;43612:4;43486:131;:::i;:::-;43478:139;;43205:419;;;:::o;43630:229::-;43770:34;43766:1;43758:6;43754:14;43747:58;43839:12;43834:2;43826:6;43822:15;43815:37;43630:229;:::o;43865:366::-;44007:3;44028:67;44092:2;44087:3;44028:67;:::i;:::-;44021:74;;44104:93;44193:3;44104:93;:::i;:::-;44222:2;44217:3;44213:12;44206:19;;43865:366;;;:::o;44237:419::-;44403:4;44441:2;44430:9;44426:18;44418:26;;44490:9;44484:4;44480:20;44476:1;44465:9;44461:17;44454:47;44518:131;44644:4;44518:131;:::i;:::-;44510:139;;44237:419;;;:::o;44662:228::-;44802:34;44798:1;44790:6;44786:14;44779:58;44871:11;44866:2;44858:6;44854:15;44847:36;44662:228;:::o;44896:366::-;45038:3;45059:67;45123:2;45118:3;45059:67;:::i;:::-;45052:74;;45135:93;45224:3;45135:93;:::i;:::-;45253:2;45248:3;45244:12;45237:19;;44896:366;;;:::o;45268:419::-;45434:4;45472:2;45461:9;45457:18;45449:26;;45521:9;45515:4;45511:20;45507:1;45496:9;45492:17;45485:47;45549:131;45675:4;45549:131;:::i;:::-;45541:139;;45268:419;;;:::o;45693:223::-;45833:34;45829:1;45821:6;45817:14;45810:58;45902:6;45897:2;45889:6;45885:15;45878:31;45693:223;:::o;45922:366::-;46064:3;46085:67;46149:2;46144:3;46085:67;:::i;:::-;46078:74;;46161:93;46250:3;46161:93;:::i;:::-;46279:2;46274:3;46270:12;46263:19;;45922:366;;;:::o;46294:419::-;46460:4;46498:2;46487:9;46483:18;46475:26;;46547:9;46541:4;46537:20;46533:1;46522:9;46518:17;46511:47;46575:131;46701:4;46575:131;:::i;:::-;46567:139;;46294:419;;;:::o;46719:301::-;46859:34;46855:1;46847:6;46843:14;46836:58;46928:34;46923:2;46915:6;46911:15;46904:59;46997:15;46992:2;46984:6;46980:15;46973:40;46719:301;:::o;47026:366::-;47168:3;47189:67;47253:2;47248:3;47189:67;:::i;:::-;47182:74;;47265:93;47354:3;47265:93;:::i;:::-;47383:2;47378:3;47374:12;47367:19;;47026:366;;;:::o;47398:419::-;47564:4;47602:2;47591:9;47587:18;47579:26;;47651:9;47645:4;47641:20;47637:1;47626:9;47622:17;47615:47;47679:131;47805:4;47679:131;:::i;:::-;47671:139;;47398:419;;;:::o;47823:171::-;47963:23;47959:1;47951:6;47947:14;47940:47;47823:171;:::o;48000:366::-;48142:3;48163:67;48227:2;48222:3;48163:67;:::i;:::-;48156:74;;48239:93;48328:3;48239:93;:::i;:::-;48357:2;48352:3;48348:12;48341:19;;48000:366;;;:::o;48372:419::-;48538:4;48576:2;48565:9;48561:18;48553:26;;48625:9;48619:4;48615:20;48611:1;48600:9;48596:17;48589:47;48653:131;48779:4;48653:131;:::i;:::-;48645:139;;48372:419;;;:::o;48797:225::-;48937:34;48933:1;48925:6;48921:14;48914:58;49006:8;49001:2;48993:6;48989:15;48982:33;48797:225;:::o;49028:366::-;49170:3;49191:67;49255:2;49250:3;49191:67;:::i;:::-;49184:74;;49267:93;49356:3;49267:93;:::i;:::-;49385:2;49380:3;49376:12;49369:19;;49028:366;;;:::o;49400:419::-;49566:4;49604:2;49593:9;49589:18;49581:26;;49653:9;49647:4;49643:20;49639:1;49628:9;49624:17;49617:47;49681:131;49807:4;49681:131;:::i;:::-;49673:139;;49400:419;;;:::o;49825:174::-;49965:26;49961:1;49953:6;49949:14;49942:50;49825:174;:::o;50005:366::-;50147:3;50168:67;50232:2;50227:3;50168:67;:::i;:::-;50161:74;;50244:93;50333:3;50244:93;:::i;:::-;50362:2;50357:3;50353:12;50346:19;;50005:366;;;:::o;50377:419::-;50543:4;50581:2;50570:9;50566:18;50558:26;;50630:9;50624:4;50620:20;50616:1;50605:9;50601:17;50594:47;50658:131;50784:4;50658:131;:::i;:::-;50650:139;;50377:419;;;:::o;50802:237::-;50942:34;50938:1;50930:6;50926:14;50919:58;51011:20;51006:2;50998:6;50994:15;50987:45;50802:237;:::o;51045:366::-;51187:3;51208:67;51272:2;51267:3;51208:67;:::i;:::-;51201:74;;51284:93;51373:3;51284:93;:::i;:::-;51402:2;51397:3;51393:12;51386:19;;51045:366;;;:::o;51417:419::-;51583:4;51621:2;51610:9;51606:18;51598:26;;51670:9;51664:4;51660:20;51656:1;51645:9;51641:17;51634:47;51698:131;51824:4;51698:131;:::i;:::-;51690:139;;51417:419;;;:::o;51842:225::-;51982:34;51978:1;51970:6;51966:14;51959:58;52051:8;52046:2;52038:6;52034:15;52027:33;51842:225;:::o;52073:366::-;52215:3;52236:67;52300:2;52295:3;52236:67;:::i;:::-;52229:74;;52312:93;52401:3;52312:93;:::i;:::-;52430:2;52425:3;52421:12;52414:19;;52073:366;;;:::o;52445:419::-;52611:4;52649:2;52638:9;52634:18;52626:26;;52698:9;52692:4;52688:20;52684:1;52673:9;52669:17;52662:47;52726:131;52852:4;52726:131;:::i;:::-;52718:139;;52445:419;;;:::o;52870:224::-;53010:34;53006:1;52998:6;52994:14;52987:58;53079:7;53074:2;53066:6;53062:15;53055:32;52870:224;:::o;53100:366::-;53242:3;53263:67;53327:2;53322:3;53263:67;:::i;:::-;53256:74;;53339:93;53428:3;53339:93;:::i;:::-;53457:2;53452:3;53448:12;53441:19;;53100:366;;;:::o;53472:419::-;53638:4;53676:2;53665:9;53661:18;53653:26;;53725:9;53719:4;53715:20;53711:1;53700:9;53696:17;53689:47;53753:131;53879:4;53753:131;:::i;:::-;53745:139;;53472:419;;;:::o;53897:147::-;53998:11;54035:3;54020:18;;53897:147;;;;:::o;54050:114::-;;:::o;54170:398::-;54329:3;54350:83;54431:1;54426:3;54350:83;:::i;:::-;54343:90;;54442:93;54531:3;54442:93;:::i;:::-;54560:1;54555:3;54551:11;54544:18;;54170:398;;;:::o;54574:379::-;54758:3;54780:147;54923:3;54780:147;:::i;:::-;54773:154;;54944:3;54937:10;;54574:379;;;:::o;54959:170::-;55099:22;55095:1;55087:6;55083:14;55076:46;54959:170;:::o;55135:366::-;55277:3;55298:67;55362:2;55357:3;55298:67;:::i;:::-;55291:74;;55374:93;55463:3;55374:93;:::i;:::-;55492:2;55487:3;55483:12;55476:19;;55135:366;;;:::o;55507:419::-;55673:4;55711:2;55700:9;55696:18;55688:26;;55760:9;55754:4;55750:20;55746:1;55735:9;55731:17;55724:47;55788:131;55914:4;55788:131;:::i;:::-;55780:139;;55507:419;;;:::o;55932:229::-;56072:34;56068:1;56060:6;56056:14;56049:58;56141:12;56136:2;56128:6;56124:15;56117:37;55932:229;:::o;56167:366::-;56309:3;56330:67;56394:2;56389:3;56330:67;:::i;:::-;56323:74;;56406:93;56495:3;56406:93;:::i;:::-;56524:2;56519:3;56515:12;56508:19;;56167:366;;;:::o;56539:419::-;56705:4;56743:2;56732:9;56728:18;56720:26;;56792:9;56786:4;56782:20;56778:1;56767:9;56763:17;56756:47;56820:131;56946:4;56820:131;:::i;:::-;56812:139;;56539:419;;;:::o;56964:234::-;57104:34;57100:1;57092:6;57088:14;57081:58;57173:17;57168:2;57160:6;57156:15;57149:42;56964:234;:::o;57204:366::-;57346:3;57367:67;57431:2;57426:3;57367:67;:::i;:::-;57360:74;;57443:93;57532:3;57443:93;:::i;:::-;57561:2;57556:3;57552:12;57545:19;;57204:366;;;:::o;57576:419::-;57742:4;57780:2;57769:9;57765:18;57757:26;;57829:9;57823:4;57819:20;57815:1;57804:9;57800:17;57793:47;57857:131;57983:4;57857:131;:::i;:::-;57849:139;;57576:419;;;:::o;58001:98::-;58052:6;58086:5;58080:12;58070:22;;58001:98;;;:::o;58105:168::-;58188:11;58222:6;58217:3;58210:19;58262:4;58257:3;58253:14;58238:29;;58105:168;;;;:::o;58279:360::-;58365:3;58393:38;58425:5;58393:38;:::i;:::-;58447:70;58510:6;58505:3;58447:70;:::i;:::-;58440:77;;58526:52;58571:6;58566:3;58559:4;58552:5;58548:16;58526:52;:::i;:::-;58603:29;58625:6;58603:29;:::i;:::-;58598:3;58594:39;58587:46;;58369:270;58279:360;;;;:::o;58645:640::-;58840:4;58878:3;58867:9;58863:19;58855:27;;58892:71;58960:1;58949:9;58945:17;58936:6;58892:71;:::i;:::-;58973:72;59041:2;59030:9;59026:18;59017:6;58973:72;:::i;:::-;59055;59123:2;59112:9;59108:18;59099:6;59055:72;:::i;:::-;59174:9;59168:4;59164:20;59159:2;59148:9;59144:18;59137:48;59202:76;59273:4;59264:6;59202:76;:::i;:::-;59194:84;;58645:640;;;;;;;:::o;59291:141::-;59347:5;59378:6;59372:13;59363:22;;59394:32;59420:5;59394:32;:::i;:::-;59291:141;;;;:::o;59438:349::-;59507:6;59556:2;59544:9;59535:7;59531:23;59527:32;59524:119;;;59562:79;;:::i;:::-;59524:119;59682:1;59707:63;59762:7;59753:6;59742:9;59738:22;59707:63;:::i;:::-;59697:73;;59653:127;59438:349;;;;:::o;59793:233::-;59832:3;59855:24;59873:5;59855:24;:::i;:::-;59846:33;;59901:66;59894:5;59891:77;59888:103;;;59971:18;;:::i;:::-;59888:103;60018:1;60011:5;60007:13;60000:20;;59793:233;;;:::o;60032:180::-;60080:77;60077:1;60070:88;60177:4;60174:1;60167:15;60201:4;60198:1;60191:15;60218:185;60258:1;60275:20;60293:1;60275:20;:::i;:::-;60270:25;;60309:20;60327:1;60309:20;:::i;:::-;60304:25;;60348:1;60338:35;;60353:18;;:::i;:::-;60338:35;60395:1;60392;60388:9;60383:14;;60218:185;;;;:::o;60409:176::-;60441:1;60458:20;60476:1;60458:20;:::i;:::-;60453:25;;60492:20;60510:1;60492:20;:::i;:::-;60487:25;;60531:1;60521:35;;60536:18;;:::i;:::-;60521:35;60577:1;60574;60570:9;60565:14;;60409:176;;;;:::o;60591:180::-;60639:77;60636:1;60629:88;60736:4;60733:1;60726:15;60760:4;60757:1;60750:15;60777:220;60917:34;60913:1;60905:6;60901:14;60894:58;60986:3;60981:2;60973:6;60969:15;60962:28;60777:220;:::o;61003:366::-;61145:3;61166:67;61230:2;61225:3;61166:67;:::i;:::-;61159:74;;61242:93;61331:3;61242:93;:::i;:::-;61360:2;61355:3;61351:12;61344:19;;61003:366;;;:::o;61375:419::-;61541:4;61579:2;61568:9;61564:18;61556:26;;61628:9;61622:4;61618:20;61614:1;61603:9;61599:17;61592:47;61656:131;61782:4;61656:131;:::i;:::-;61648:139;;61375:419;;;:::o;61800:227::-;61940:34;61936:1;61928:6;61924:14;61917:58;62009:10;62004:2;61996:6;61992:15;61985:35;61800:227;:::o;62033:366::-;62175:3;62196:67;62260:2;62255:3;62196:67;:::i;:::-;62189:74;;62272:93;62361:3;62272:93;:::i;:::-;62390:2;62385:3;62381:12;62374:19;;62033:366;;;:::o;62405:419::-;62571:4;62609:2;62598:9;62594:18;62586:26;;62658:9;62652:4;62648:20;62644:1;62633:9;62629:17;62622:47;62686:131;62812:4;62686:131;:::i;:::-;62678:139;;62405:419;;;:::o

Swarm Source

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