ETH Price: $3,302.43 (-3.60%)
Gas: 6 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

5,587 ERC20 ***

Holders

1,340

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xace.eth
Balance
4 ERC20 ***
0xd7f4e01b66bedde8aa85300130cc6c7b9823942c
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:
DaijuKingz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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


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


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


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


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


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


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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public 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 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 {}
}


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


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


/*
 * Interface for the $COLORWASTE erc20 token contract
 */
interface ICW {
    function burn(address _from, uint256 _amount) external;
    function updateBalance(address _from, address _to) external;
}

/*
 * Interface for the $SOS erc20 token contract
 */
interface ISOS {
    function approve(address from, uint256 amount) external returns(bool);
    function transferFrom(address from, address to, uint256 amount) external;
    function balanceOf(address owner) external view returns(uint256);
}

/*
 * Interface for the Doodles contract
 */
interface IDoodles {
    function balanceOf(address owner) external view returns(uint256);
    function ownerOf(uint256 tokenId) external view returns(address);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns(uint256);
}

/*
 * Interface for the KaijuKingz contract
 */
interface IKaijuKingz {
    function walletOfOwner(address owner) external view returns(uint256[] memory);
    function ownerOf(uint256 tokenId) external view returns(address);
}

/*
 * DAIJUKINGZ
 */
contract DaijuKingz is ERC721, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    Counters.Counter private TotalSupplyFix;

    ICW public CW;
    IDoodles public Doodles;
    IKaijuKingz public KaijuKingz;
    ISOS public SOS;
    
    string private baseURI;

    uint256 constant public reserveMax = 50; // the amount of daijus the team will reserve for community events, staff, etc.
    uint256 public maxSupply = 11110; // max genesis + max bred daijus
    uint256 public maxGenCount = 5555; // the max genesis count. if theres remaining supply after sale ends, the genesis daijukingz will be less then this number
    uint256 public maxFreeMints = 124; // the max free mints that can be claimed for kaiju and doodle holders
    uint256 public maxGivewayMint = 676; // the max free mints that are from the whitelisted users
    
    // counters
    uint256 public reserveCount = 0;
    uint256 public freeMintCount = 0;
    uint256 public giveawayMintCount = 0;
    uint256 public genCount = 0;
    uint256 public babyCount = 0;

    // settings for breeding & sales
    uint256 public price = 0.05 ether; 
    uint256 public breedPrice = 7500 ether;
    uint256 public increasePerBreed = 0 ether;
    uint256 public saleStartTimestamp;
    uint256 public freeEndTimestamp;
    address public sosWallet; 
    uint256 public sosPrice = 0.05 ether;
    bool public transfersEnabled = false;
    bool public breedingEnabled = false;

    // tracks all of the wallets that interact with the contract
    mapping(address => uint256) public balanceGenesis;
    mapping(address => uint256) public balanceBaby;
    mapping(address => uint256) public freeMintList;
    mapping(address => uint256) public giveawayMintList;
    
    /*
     * DaijuOwner
     * checks if the token IDs provided are owned by the user interacting with the contract (used for breeding)
     */
    modifier DaijuOwner(uint256 DaijuId) {
        require(ownerOf(DaijuId) == msg.sender, "Cannot interact with a DaijuKingz you do not own");
        _;
    }

    /*
     * IsSaleActive
     * checks if the mint is ready to begin
     */
    modifier IsSaleActive() {
        require(saleStartTimestamp != 0 && block.timestamp > saleStartTimestamp, "Cannot interact because sale has not started");
        _;
    }

    /*
     * IsFreeMintActive
     * checks if the free mint end timestamp isn't met
     */
    modifier IsFreeMintActive {
        require(block.timestamp < freeEndTimestamp, "Free Minting period has ended!");
        _;
    }

    /*
     * AreTransfersEnabled
     * checks if we want to allow opensea to transfer any tokens
     */
    modifier AreTransfersEnabled() {
        require(transfersEnabled, "Transfers aren't allowed yet!");
        _;
    }

    constructor() ERC721("DaijuKingz", "Daiju") {}

    /*
     * mintFreeKaijuList
     * checks the walelt for a list of kaijukingz they hold, used for checking if they
     * can claim a free daijuking
     */
    function mintFreeKaijuList(address _address) external view returns(uint256[] memory) {
        return KaijuKingz.walletOfOwner(_address);
    }

    /*
     * mintFreeDoodleList
     * gets the amount of doodles a wallet holds, used for checking if they are elligble
     * for claiming a free daijuking
     */
    function mintFreeDoodleList(address _address) public view returns(uint256) {
        uint256 count = Doodles.balanceOf(_address);

        return count;
    }

    /*
     * checkIfFreeMintClaimed
     * checks if the address passed claimed a free mint already
     */
    function checkIfFreeMintClaimed(address _address) public view returns(uint256) {
        return freeMintList[_address];
    }

    /*
     * checkIfGiveawayMintClaimed
     * checks if they claimed their giveaway mint
     */
    function checkIfGiveawayMintClaimed(address _address) public view returns(uint256) {
        return giveawayMintList[_address];
    }

    /*
     * addGiveawayWinners
     * adds the wallets to the giveaway list so they can call mintFreeGiveaway()
     */
    function addGiveawayWinners(address[] calldata giveawayAddresses) external onlyOwner {
        for (uint256 i; i < giveawayAddresses.length; i++) {
            giveawayMintList[giveawayAddresses[i]] = 1;
        }
    }

    /*
     * mintFreeDoodle
     * mints a free daijuking using a Doodles token - can only be claimed once per wallet
     */
    function mintFreeDoodle() public payable IsSaleActive IsFreeMintActive {
        uint256 supply = TotalSupplyFix.current();

        require(supply <= maxGenCount, "All Genesis Daijukingz were claimed!");
        require(mintFreeDoodleList(msg.sender) >= 1, "You don't own any Doodles!");
        require((supply + 1) <= maxFreeMints, "All the free mints have been claimed!");
        require(freeMintList[msg.sender] < 1, "You already claimed your free daijuking!");
        require(!breedingEnabled, "Minting genesis has been disabled!");

        _safeMint(msg.sender, supply);
        TotalSupplyFix.increment();

        freeMintList[msg.sender] = 1;
        balanceGenesis[msg.sender]++;
        genCount++;
        freeMintCount += 1;
    }

    /*
     * mintFreeKaiju
     * mints a free daijuking using a KaijuKingz token - can only be claimed once per wallet
     */
    function mintFreeKaiju() public payable IsSaleActive IsFreeMintActive {
        uint256 supply = TotalSupplyFix.current();
        uint256[] memory list = KaijuKingz.walletOfOwner(msg.sender);

        require(supply <= maxGenCount, "All Genesis Daijukingz were claimed!");
        require((supply + 1) <= maxFreeMints, "All the free mints have been claimed!");
        require(freeMintList[msg.sender] < 1, "You already claimed your free daijuking!");
        require(list.length >= 1, "You don't own any KaijuKingz!");
        require(!breedingEnabled, "Minting genesis has been disabled!");

        _safeMint(msg.sender, supply);
        TotalSupplyFix.increment();

        freeMintList[msg.sender] = 1;
        balanceGenesis[msg.sender]++;
        genCount++;
        freeMintCount += 1;
    }

    /*
     * mintFreeGiveaway
     * this is for the giveaway winners - allows you to mint a free daijuking
     */
    function mintFreeGiveaway() public payable IsSaleActive IsFreeMintActive {
        uint256 supply = TotalSupplyFix.current();

        require(supply <= maxGenCount, "All Genesis Daijukingz were claimed!");
        require((supply + 1) <= maxGivewayMint, "All giveaway mints were claimed!");
        require(giveawayMintList[msg.sender] >= 1, "You don't have any free mints left!");
        require(!breedingEnabled, "Minting genesis has been disabled!");

        _safeMint(msg.sender, supply);
        TotalSupplyFix.increment();

        giveawayMintList[msg.sender] = 0;
        balanceGenesis[msg.sender]++;
        genCount++;
        giveawayMintCount += 1;
    }

    /*
     * mint
     * mints the daijuking using ETH as the payment token
     */
    function mint(uint256 numberOfMints) public payable IsSaleActive {
        uint256 supply = TotalSupplyFix.current();
        require(numberOfMints > 0 && numberOfMints < 11, "Invalid purchase amount");

        if (block.timestamp <= freeEndTimestamp) {
            require(supply.add(numberOfMints) <= (maxGenCount - (maxFreeMints + maxGivewayMint)), "Purchase would exceed max supply");
        } else {
            require(supply.add(numberOfMints) <= maxGenCount, "Purchase would exceed max supply");
        }
        
        require(price.mul(numberOfMints) == msg.value, "Ether value sent is not correct");
        require(!breedingEnabled, "Minting genesis has been disabled!");

        for (uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
            genCount++;
            TotalSupplyFix.increment();
        }
    }

    /*
     * mintWithSOS
     * allows the user to mint a daijuking using the $SOS token
     * note: user must approve it before this can be called
     */
    function mintWithSOS(uint256 numberOfMints) public payable IsSaleActive {
         uint256 supply = TotalSupplyFix.current();
        
        require(numberOfMints > 0 && numberOfMints < 11, "Invalid purchase amount");
        require(supply.add(numberOfMints) <= maxGenCount, "Purchase would exceed max supply");
        require(sosPrice.mul(numberOfMints) < SOS.balanceOf(msg.sender), "Not enough SOS to mint!");
        require(!breedingEnabled, "Minting genesis has been disabled!");

        SOS.transferFrom(msg.sender, sosWallet, sosPrice.mul(numberOfMints));

        for (uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
            genCount++;
            TotalSupplyFix.increment();
        }
    }

    /*
     * breed
     * allows you to create a daijuking using 2 parents and some $COLORWASTE, 18+ only
     * note: selecting is automatic from the DAPP, but if you use the contract make sure they are two unique token id's that aren't children...
     */
    function breed(uint256 parent1, uint256 parent2) public DaijuOwner(parent1) DaijuOwner(parent2) {
        uint256 supply = TotalSupplyFix.current();

        require(breedingEnabled, "Breeding isn't enabled yet!");
        require(supply < maxSupply, "Cannot breed any more baby Daijus");
        require(parent1 < genCount && parent2 < genCount, "Cannot breed with baby Daijus (thats sick bro)");
        require(parent1 != parent2, "Must select two unique parents");

        // burns the tokens for the breeding cost
        CW.burn(msg.sender, breedPrice + increasePerBreed * babyCount);

        // adds the baby to the total supply and counter
        babyCount++;
        TotalSupplyFix.increment();

        // mints the baby daijuking and adds it to the balance for the wallet
        _safeMint(msg.sender, supply);
        balanceBaby[msg.sender]++;
    }

    /*
     * reserve
     * mints the reserved amount 
     */
    function reserve(uint256 count) public onlyOwner {
        uint256 supply = TotalSupplyFix.current();

        require(reserveCount + count < reserveMax, "cannot reserve more");

        for (uint256 i = 0; i < count; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
            genCount++;
            TotalSupplyFix.increment();
            reserveCount++;
        }
    }

    /*
     * totalSupply
     * returns the current amount of tokens, called by DAPPs
     */
    function totalSupply() external view returns(uint256) {
        return TotalSupplyFix.current();
    }

    /*
     * getTypes
     * gets the tokens provided and returns the genesis and baby daijukingz
     *
     * genesis is 0
     * baby is 1
     */
    function getTypes(uint256[] memory list) external view returns(uint256[] memory) {
        uint256[] memory typeList = new uint256[](list.length);

        for (uint256 i; i < list.length; i++){
            if (list[i] >= genCount) {
                typeList[i] = 1;
            } else {
                typeList[i] = 0;
            }
        }

        return typeList;
    }

    /*
     * walletOfOwner
     * returns the tokens that the user owns
     */
    function walletOfOwner(address owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);
        uint256 supply = TotalSupplyFix.current();
        uint256 index = 0;

        uint256[] memory tokensId = new uint256[](tokenCount);
    
        for (uint256 i; i < supply; i++) {
            if (ownerOf(i) == owner) {
                tokensId[index] = i;
                index++;
            }
        }

        return tokensId;
    }

    /*
     * withdraw
     * takes out the eth from the contract to the deployer
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /*
     * updateSaleTimestamp
     * set once we're ready release
     */
    function updateSaleTimestamp(uint256 _saleStartTimestamp) public onlyOwner {
        saleStartTimestamp = _saleStartTimestamp;
    }

    /*
     * updateFreeEndTimestamp
     * set once saleStartTimestamp is set for release
     */
    function updateFreeEndTimestamp(uint256 _freeEndTimestamp) public onlyOwner {
        freeEndTimestamp = _freeEndTimestamp;
    }

    /*
     * setBreedingCost
     * sets the breeding cost to the new
     */
    function setBreedingCost(uint256 _breedPrice) public onlyOwner {
        breedPrice = _breedPrice;
    }

    /*
     * setBreedingCostIncrease
     * change the rate based on the breeding cost for each new baby mint
     */
    function setBreedingCostIncrease(uint256 _increasePerBreed) public onlyOwner {
        increasePerBreed = _increasePerBreed;
    }

    /*
     * setBreedingState
     * changes whether breeding is enabled or not, by default its disabled
     */
    function setBreedingState(bool _state) public onlyOwner {
        breedingEnabled = _state;
    }

    /*
     * setPrice
     * sets the eth mint price (shouldn't ever be called but who knows)
     */
    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }
    
    /*
     * setSOSPrice
     * sets the price for $SOS mint, most likely will only be set once before the release
     */
    function setSOSPrice(uint256 _sosPrice) public onlyOwner {
        sosPrice = _sosPrice;
    }

    // 46524939000000000000000000
    // 4652493900000000000000000
    /*
     * setSOSWallet
     * sets the deposit wallet for $SOS mints
     */
    function setSOSWallet(address _address) public onlyOwner {
        sosWallet = _address;
    }

    /*
     * setBaseURI
     * sets the metadata url once its live
     */
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    /*
     * _baseURI
     * returns the metadata url to any DAPPs that use it (opensea for instance)
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /*
     * setTransfersEnabled
     * enables opensea transfers - can only be called once
     */
    function setTransfersEnabled() external onlyOwner {
        transfersEnabled = true;
    }

    /*
     * setCWInterface
     * links the interface to the $COLORWASTE smart contract once it's deployed
     */
    function setCWInterface(address _address) external onlyOwner {
        CW = ICW(_address);
    }

    /*
     * setKaijuInterface
     * links the interface to the KaijuKingz contract
     */
    function setKaijuInterface(address _address) public onlyOwner {
        KaijuKingz = IKaijuKingz(_address);
    }

    /*
     * setDoodleInterface
     * links the interface to the Doodles contract
     */
    function setDoodleInterface(address _address) public onlyOwner {
        Doodles = IDoodles(_address);
    }

    /*
     * setSOSInterface
     * links the interface to the $SOS contract
     */
    function setSOSInterface(address target) public onlyOwner {
        SOS = ISOS(target);
    }

    /*
     * Opensea methods for transfering the tokens
     */
    function transferFrom(address from, address to, uint256 tokenId) public override AreTransfersEnabled {
        CW.updateBalance(from, to);

        if (tokenId >= maxGenCount) {
            balanceBaby[from]--;
            balanceBaby[to]++;
        } else {
            balanceGenesis[from]--;
            balanceGenesis[to]++;
        }

        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override AreTransfersEnabled {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override AreTransfersEnabled {
        CW.updateBalance(from, to);

        if (tokenId >= maxGenCount) {
            balanceBaby[from]--;
            balanceBaby[to]++;
        } else {
            balanceGenesis[from]--;
            balanceGenesis[to]++;
        }

        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CW","outputs":[{"internalType":"contract ICW","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Doodles","outputs":[{"internalType":"contract IDoodles","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KaijuKingz","outputs":[{"internalType":"contract IKaijuKingz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOS","outputs":[{"internalType":"contract ISOS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"giveawayAddresses","type":"address[]"}],"name":"addGiveawayWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"babyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceBaby","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"parent1","type":"uint256"},{"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breedingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkIfFreeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkIfGiveawayMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"list","type":"uint256[]"}],"name":"getTypes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveawayMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"increasePerBreed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGivewayMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFreeDoodle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintFreeDoodleList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFreeGiveaway","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFreeKaiju","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintFreeKaijuList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintWithSOS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveMax","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":"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":"saleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_breedPrice","type":"uint256"}],"name":"setBreedingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_increasePerBreed","type":"uint256"}],"name":"setBreedingCostIncrease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBreedingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setCWInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setDoodleInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setKaijuInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"setSOSInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sosPrice","type":"uint256"}],"name":"setSOSPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSOSWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTransfersEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sosPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sosWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeEndTimestamp","type":"uint256"}],"name":"updateFreeEndTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTimestamp","type":"uint256"}],"name":"updateSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612b66600d556115b3600e55607c600f556102a460105560006011819055601281905560138190556014819055601581905566b1a2bc2ec5000060168190556901969368974c05b00000601755601891909155601c55601d805461ffff191690553480156200007257600080fd5b50604080518082018252600a8152692230b4b53aa5b4b733bd60b11b6020808301918252835180850190945260058452644461696a7560d81b908401528151919291620000c29160009162000151565b508051620000d890600190602084019062000151565b505050620000f5620000ef620000fb60201b60201c565b620000ff565b62000234565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f90620001f7565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600181811c908216806200020c57607f821691505b602082108114156200022e57634e487b7160e01b600052602260045260246000fd5b50919050565b613d6780620002446000396000f3fe6080604052600436106103b55760003560e01c806371264eac116101f9578063b88d4fde1161011e578063da312e1f116100b6578063e55f58bb1161007a578063e55f58bb14610b97578063e95cddbc14610bad578063e985e9c514610bcd578063f2fde38b14610bed578063f88d58ff14610c0d57600080fd5b8063da312e1f14610afe578063da86043014610b1e578063dcb5c8fd14610b34578063dfecff1d14610b54578063e2b26b1514610b6a57600080fd5b8063b88d4fde146109f8578063b96ce5a214610a18578063bc5c8f8b14610a38578063bef97c8714610a58578063c2cfc4fa14610a72578063c87b56dd14610a92578063d2dec78814610ab2578063d5abeb0114610ac8578063d9ecad7b14610ade57600080fd5b80639b39f5f4116101915780639b39f5f4146109135780639bcf6faa14610933578063a035b1fe14610953578063a0712d6814610969578063a22cb4651461097c578063a262dfd71461099c578063a5324093146109bc578063b166e196146109e8578063b70a0117146109f057600080fd5b806371264eac1461081e578063715018a61461083e578063732496c9146108535780637d7c4cfb146108695780637ebf2aea14610889578063819b25ba146108a95780638da5cb5b146108c957806391b7f5ed146108de57806395d89b41146108fe57600080fd5b80633c276d86116102df57806355f804b31161027757806355f804b31461071857806359523d26146107385780635c4e80641461074b5780636352211e14610753578063642b82af146107735780636f198a8f146107895780636f73caf0146107a95780637086e08d146107de57806370a08231146107fe57600080fd5b80633c276d86146106145780633ccfd60b1461062a57806340b8d9881461063f57806341949ee01461065f57806342842e0e14610675578063438b6300146106955780634f5dde48146106c257806353526603146106e2578063539cb1e71461070257600080fd5b80631e98165e116103525780631e98165e146104f157806323b872dd146105115780632459e8d6146105315780632a5f510e146105515780632bba9fe6146105675780633299c120146105865780633328e70a1461059c578063359170e6146105c957806335c66d37146105de57600080fd5b806240e050146103ba57806301ffc9a7146103e257806306fdde0314610412578063081812fc14610434578063089f6af014610461578063095ea7b31461048e57806316317c21146104b057806318160ddd146104c65780631e6d1321146104db575b600080fd5b3480156103c657600080fd5b506103cf603281565b6040519081526020015b60405180910390f35b3480156103ee57600080fd5b506104026103fd3660046132be565b610c2d565b60405190151581526020016103d9565b34801561041e57600080fd5b50610427610c7f565b6040516103d99190613333565b34801561044057600080fd5b5061045461044f366004613346565b610d11565b6040516103d9919061335f565b34801561046d57600080fd5b506103cf61047c36600461338f565b60216020526000908152604090205481565b34801561049a57600080fd5b506104ae6104a93660046133aa565b610d9e565b005b3480156104bc57600080fd5b506103cf60115481565b3480156104d257600080fd5b506103cf610eaf565b3480156104e757600080fd5b506103cf60105481565b3480156104fd57600080fd5b506104ae61050c36600461338f565b610ebf565b34801561051d57600080fd5b506104ae61052c3660046133d4565b610f10565b34801561053d57600080fd5b50601b54610454906001600160a01b031681565b34801561055d57600080fd5b506103cf60175481565b34801561057357600080fd5b50601d5461040290610100900460ff1681565b34801561059257600080fd5b506103cf600e5481565b3480156105a857600080fd5b506103cf6105b736600461338f565b601f6020526000908152604090205481565b3480156105d557600080fd5b506104ae611057565b3480156105ea57600080fd5b506103cf6105f936600461338f565b6001600160a01b031660009081526021602052604090205490565b34801561062057600080fd5b506103cf60195481565b34801561063657600080fd5b506104ae611095565b34801561064b57600080fd5b50600b54610454906001600160a01b031681565b34801561066b57600080fd5b506103cf60135481565b34801561068157600080fd5b506104ae6106903660046133d4565b6110f7565b3480156106a157600080fd5b506106b56106b036600461338f565b611134565b6040516103d99190613410565b3480156106ce57600080fd5b506103cf6106dd36600461338f565b61120c565b3480156106ee57600080fd5b506106b56106fd3660046134bd565b611289565b34801561070e57600080fd5b506103cf60155481565b34801561072457600080fd5b506104ae6107333660046135a9565b61135f565b6104ae610746366004613346565b6113a1565b6104ae611624565b34801561075f57600080fd5b5061045461076e366004613346565b6117f1565b34801561077f57600080fd5b506103cf60185481565b34801561079557600080fd5b506104ae6107a436600461338f565b611868565b3480156107b557600080fd5b506103cf6107c436600461338f565b6001600160a01b0316600090815260208052604090205490565b3480156107ea57600080fd5b506104ae6107f93660046135f1565b6118b9565b34801561080a57600080fd5b506103cf61081936600461338f565b61194c565b34801561082a57600080fd5b50600854610454906001600160a01b031681565b34801561084a57600080fd5b506104ae6119d3565b34801561085f57600080fd5b506103cf600f5481565b34801561087557600080fd5b506104ae610884366004613346565b611a0e565b34801561089557600080fd5b506104ae6108a4366004613346565b611a42565b3480156108b557600080fd5b506104ae6108c4366004613346565b611a76565b3480156108d557600080fd5b50610454611b89565b3480156108ea57600080fd5b506104ae6108f9366004613346565b611b98565b34801561090a57600080fd5b50610427611bcc565b34801561091f57600080fd5b50600a54610454906001600160a01b031681565b34801561093f57600080fd5b506104ae61094e36600461338f565b611bdb565b34801561095f57600080fd5b506103cf60165481565b6104ae610977366004613346565b611c2c565b34801561098857600080fd5b506104ae610997366004613675565b611e03565b3480156109a857600080fd5b506104ae6109b7366004613346565b611ec4565b3480156109c857600080fd5b506103cf6109d736600461338f565b602080526000908152604090205481565b6104ae611ef8565b6104ae612139565b348015610a0457600080fd5b506104ae610a133660046136a8565b612314565b348015610a2457600080fd5b506104ae610a3336600461338f565b612462565b348015610a4457600080fd5b50600954610454906001600160a01b031681565b348015610a6457600080fd5b50601d546104029060ff1681565b348015610a7e57600080fd5b506106b5610a8d36600461338f565b6124b3565b348015610a9e57600080fd5b50610427610aad366004613346565b612528565b348015610abe57600080fd5b506103cf60145481565b348015610ad457600080fd5b506103cf600d5481565b348015610aea57600080fd5b506104ae610af9366004613723565b6125f2565b348015610b0a57600080fd5b506104ae610b19366004613346565b6128c0565b348015610b2a57600080fd5b506103cf601c5481565b348015610b4057600080fd5b506104ae610b4f36600461338f565b6128f4565b348015610b6057600080fd5b506103cf601a5481565b348015610b7657600080fd5b506103cf610b8536600461338f565b601e6020526000908152604090205481565b348015610ba357600080fd5b506103cf60125481565b348015610bb957600080fd5b506104ae610bc8366004613346565b612945565b348015610bd957600080fd5b50610402610be8366004613745565b612979565b348015610bf957600080fd5b506104ae610c0836600461338f565b6129a7565b348015610c1957600080fd5b506104ae610c2836600461376f565b612a47565b60006001600160e01b031982166380ac58cd60e01b1480610c5e57506001600160e01b03198216635b5e139f60e01b145b80610c7957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610c8e9061378a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba9061378a565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b5050505050905090565b6000610d1c82612a90565b610d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610da9826117f1565b9050806001600160a01b0316836001600160a01b03161415610e175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d79565b336001600160a01b0382161480610e335750610e338133612979565b610ea05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610d79565b610eaa8383612aad565b505050565b6000610eba60075490565b905090565b33610ec8611b89565b6001600160a01b031614610eee5760405162461bcd60e51b8152600401610d79906137c5565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b601d5460ff16610f325760405162461bcd60e51b8152600401610d79906137fa565b60085460405163b5df11d560e01b81526001600160a01b03858116600483015284811660248301529091169063b5df11d590604401600060405180830381600087803b158015610f8157600080fd5b505af1158015610f95573d6000803e3d6000fd5b50505050600e548110610ff9576001600160a01b0383166000908152601f60205260408120805491610fc683613847565b90915550506001600160a01b0382166000908152601f60205260408120805491610fef8361385e565b919050555061104c565b6001600160a01b0383166000908152601e6020526040812080549161101d83613847565b90915550506001600160a01b0382166000908152601e602052604081208054916110468361385e565b91905055505b610eaa838383612b1b565b33611060611b89565b6001600160a01b0316146110865760405162461bcd60e51b8152600401610d79906137c5565b601d805460ff19166001179055565b3361109e611b89565b6001600160a01b0316146110c45760405162461bcd60e51b8152600401610d79906137c5565b6040514790339082156108fc029083906000818181858888f193505050501580156110f3573d6000803e3d6000fd5b5050565b601d5460ff166111195760405162461bcd60e51b8152600401610d79906137fa565b610eaa83838360405180602001604052806000815250612314565b606060006111418361194c565b9050600061114e60075490565b9050600080836001600160401b0381111561116b5761116b613454565b604051908082528060200260200182016040528015611194578160200160208202803683370190505b50905060005b8381101561120257866001600160a01b03166111b5826117f1565b6001600160a01b031614156111f057808284815181106111d7576111d7613879565b6020908102919091010152826111ec8161385e565b9350505b806111fa8161385e565b91505061119a565b5095945050505050565b6009546040516370a0823160e01b815260009182916001600160a01b03909116906370a082319061124190869060040161335f565b602060405180830381865afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611282919061388f565b9392505050565b6060600082516001600160401b038111156112a6576112a6613454565b6040519080825280602002602001820160405280156112cf578160200160208202803683370190505b50905060005b8351811015611358576014548482815181106112f3576112f3613879565b60200260200101511061132557600182828151811061131457611314613879565b602002602001018181525050611346565b600082828151811061133957611339613879565b6020026020010181815250505b806113508161385e565b9150506112d5565b5092915050565b33611368611b89565b6001600160a01b03161461138e5760405162461bcd60e51b8152600401610d79906137c5565b80516110f390600c90602084019061320f565b601954158015906113b3575060195442115b6113cf5760405162461bcd60e51b8152600401610d79906138a8565b60006113da60075490565b90506000821180156113ec5750600b82105b6114085760405162461bcd60e51b8152600401610d79906138f4565b600e546114158284612b4c565b11156114335760405162461bcd60e51b8152600401610d7990613925565b600b546040516370a0823160e01b81526001600160a01b03909116906370a082319061146390339060040161335f565b602060405180830381865afa158015611480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a4919061388f565b601c546114b19084612b58565b106114f85760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f75676820534f5320746f206d696e742160481b6044820152606401610d79565b601d54610100900460ff16156115205760405162461bcd60e51b8152600401610d799061395a565b600b54601b54601c546001600160a01b03928316926323b872dd92339291169061154a9087612b58565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b5050505060005b82811015610eaa576115cf336115ca838561399c565b612b64565b336000908152601e602052604081208054916115ea8361385e565b9091555050601480549060006115ff8361385e565b9190505550611612600780546001019055565b8061161c8161385e565b9150506115b4565b60195415801590611636575060195442115b6116525760405162461bcd60e51b8152600401610d79906138a8565b601a5442106116735760405162461bcd60e51b8152600401610d79906139b4565b600061167e60075490565b9050600e548111156116a25760405162461bcd60e51b8152600401610d79906139eb565b60016116ad3361120c565b10156116fb5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f6e2774206f776e20616e7920446f6f646c6573210000000000006044820152606401610d79565b600f5461170982600161399c565b11156117275760405162461bcd60e51b8152600401610d7990613a2f565b3360009081526020805260409020546001116117555760405162461bcd60e51b8152600401610d7990613a74565b601d54610100900460ff161561177d5760405162461bcd60e51b8152600401610d799061395a565b6117873382612b64565b611795600780546001019055565b3360009081526020808052604080832060019055601e90915281208054916117bc8361385e565b9091555050601480549060006117d18361385e565b91905055506001601260008282546117e9919061399c565b909155505050565b6000818152600260205260408120546001600160a01b031680610c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d79565b33611871611b89565b6001600160a01b0316146118975760405162461bcd60e51b8152600401610d79906137c5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b336118c2611b89565b6001600160a01b0316146118e85760405162461bcd60e51b8152600401610d79906137c5565b60005b81811015610eaa5760016021600085858581811061190b5761190b613879565b9050602002016020810190611920919061338f565b6001600160a01b03168152602081019190915260400160002055806119448161385e565b9150506118eb565b60006001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d79565b506001600160a01b031660009081526003602052604090205490565b336119dc611b89565b6001600160a01b031614611a025760405162461bcd60e51b8152600401610d79906137c5565b611a0c6000612b7e565b565b33611a17611b89565b6001600160a01b031614611a3d5760405162461bcd60e51b8152600401610d79906137c5565b601755565b33611a4b611b89565b6001600160a01b031614611a715760405162461bcd60e51b8152600401610d79906137c5565b601a55565b33611a7f611b89565b6001600160a01b031614611aa55760405162461bcd60e51b8152600401610d79906137c5565b6000611ab060075490565b9050603282601154611ac2919061399c565b10611b055760405162461bcd60e51b815260206004820152601360248201527263616e6e6f742072657365727665206d6f726560681b6044820152606401610d79565b60005b82811015610eaa57611b1e336115ca838561399c565b336000908152601e60205260408120805491611b398361385e565b909155505060148054906000611b4e8361385e565b9190505550611b61600780546001019055565b60118054906000611b718361385e565b91905055508080611b819061385e565b915050611b08565b6006546001600160a01b031690565b33611ba1611b89565b6001600160a01b031614611bc75760405162461bcd60e51b8152600401610d79906137c5565b601655565b606060018054610c8e9061378a565b33611be4611b89565b6001600160a01b031614611c0a5760405162461bcd60e51b8152600401610d79906137c5565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60195415801590611c3e575060195442115b611c5a5760405162461bcd60e51b8152600401610d79906138a8565b6000611c6560075490565b9050600082118015611c775750600b82105b611c935760405162461bcd60e51b8152600401610d79906138f4565b601a544211611ce657601054600f54611cac919061399c565b600e54611cb99190613abc565b611cc38284612b4c565b1115611ce15760405162461bcd60e51b8152600401610d7990613925565b611d11565b600e54611cf38284612b4c565b1115611d115760405162461bcd60e51b8152600401610d7990613925565b6016543490611d209084612b58565b14611d6d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610d79565b601d54610100900460ff1615611d955760405162461bcd60e51b8152600401610d799061395a565b60005b82811015610eaa57611dae336115ca838561399c565b336000908152601e60205260408120805491611dc98361385e565b909155505060148054906000611dde8361385e565b9190505550611df1600780546001019055565b80611dfb8161385e565b915050611d98565b6001600160a01b038216331415611e585760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610d79565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33611ecd611b89565b6001600160a01b031614611ef35760405162461bcd60e51b8152600401610d79906137c5565b601955565b60195415801590611f0a575060195442115b611f265760405162461bcd60e51b8152600401610d79906138a8565b601a544210611f475760405162461bcd60e51b8152600401610d79906139b4565b6000611f5260075490565b600a5460405162438b6360e81b81529192506000916001600160a01b039091169063438b630090611f8790339060040161335f565b600060405180830381865afa158015611fa4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fcc9190810190613ad3565b9050600e54821115611ff05760405162461bcd60e51b8152600401610d79906139eb565b600f54611ffe83600161399c565b111561201c5760405162461bcd60e51b8152600401610d7990613a2f565b33600090815260208052604090205460011161204a5760405162461bcd60e51b8152600401610d7990613a74565b60018151101561209c5760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f6e2774206f776e20616e79204b61696a754b696e677a210000006044820152606401610d79565b601d54610100900460ff16156120c45760405162461bcd60e51b8152600401610d799061395a565b6120ce3383612b64565b6120dc600780546001019055565b3360009081526020808052604080832060019055601e90915281208054916121038361385e565b9091555050601480549060006121188361385e565b9190505550600160126000828254612130919061399c565b90915550505050565b6019541580159061214b575060195442115b6121675760405162461bcd60e51b8152600401610d79906138a8565b601a5442106121885760405162461bcd60e51b8152600401610d79906139b4565b600061219360075490565b9050600e548111156121b75760405162461bcd60e51b8152600401610d79906139eb565b6010546121c582600161399c565b11156122135760405162461bcd60e51b815260206004820181905260248201527f416c6c206769766561776179206d696e7473207765726520636c61696d6564216044820152606401610d79565b336000908152602160205260409020546001111561227f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e2774206861766520616e792066726565206d696e7473206c6560448201526266742160e81b6064820152608401610d79565b601d54610100900460ff16156122a75760405162461bcd60e51b8152600401610d799061395a565b6122b13382612b64565b6122bf600780546001019055565b336000908152602160209081526040808320839055601e90915281208054916122e78361385e565b9091555050601480549060006122fc8361385e565b91905055506001601360008282546117e9919061399c565b601d5460ff166123365760405162461bcd60e51b8152600401610d79906137fa565b60085460405163b5df11d560e01b81526001600160a01b03868116600483015285811660248301529091169063b5df11d590604401600060405180830381600087803b15801561238557600080fd5b505af1158015612399573d6000803e3d6000fd5b50505050600e5482106123fd576001600160a01b0384166000908152601f602052604081208054916123ca83613847565b90915550506001600160a01b0383166000908152601f602052604081208054916123f38361385e565b9190505550612450565b6001600160a01b0384166000908152601e6020526040812080549161242183613847565b90915550506001600160a01b0383166000908152601e6020526040812080549161244a8361385e565b91905055505b61245c84848484612bd0565b50505050565b3361246b611b89565b6001600160a01b0316146124915760405162461bcd60e51b8152600401610d79906137c5565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405162438b6360e81b81526060916001600160a01b03169063438b6300906124e390859060040161335f565b600060405180830381865afa158015612500573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c799190810190613ad3565b606061253382612a90565b6125975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d79565b60006125a1612c02565b905060008151116125c15760405180602001604052806000815250611282565b806125cb84612c11565b6040516020016125dc929190613b58565b6040516020818303038152906040529392505050565b81336125fd826117f1565b6001600160a01b0316146126235760405162461bcd60e51b8152600401610d7990613b87565b813361262e826117f1565b6001600160a01b0316146126545760405162461bcd60e51b8152600401610d7990613b87565b600061265f60075490565b601d54909150610100900460ff166126b95760405162461bcd60e51b815260206004820152601b60248201527f4272656564696e672069736e277420656e61626c6564207965742100000000006044820152606401610d79565b600d5481106127145760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f7420627265656420616e79206d6f72652062616279204461696a756044820152607360f81b6064820152608401610d79565b60145485108015612726575060145484105b6127895760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420627265656420776974682062616279204461696a757320287460448201526d68617473207369636b2062726f2960901b6064820152608401610d79565b838514156127d95760405162461bcd60e51b815260206004820152601e60248201527f4d7573742073656c6563742074776f20756e6971756520706172656e747300006044820152606401610d79565b6008546015546018546001600160a01b0390921691639dc29fac9133916128009190613bd7565b60175461280d919061399c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561285357600080fd5b505af1158015612867573d6000803e3d6000fd5b50506015805492509050600061287c8361385e565b919050555061288f600780546001019055565b6128993382612b64565b336000908152601f602052604081208054916128b48361385e565b91905055505050505050565b336128c9611b89565b6001600160a01b0316146128ef5760405162461bcd60e51b8152600401610d79906137c5565b601c55565b336128fd611b89565b6001600160a01b0316146129235760405162461bcd60e51b8152600401610d79906137c5565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3361294e611b89565b6001600160a01b0316146129745760405162461bcd60e51b8152600401610d79906137c5565b601855565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336129b0611b89565b6001600160a01b0316146129d65760405162461bcd60e51b8152600401610d79906137c5565b6001600160a01b038116612a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d79565b612a4481612b7e565b50565b33612a50611b89565b6001600160a01b031614612a765760405162461bcd60e51b8152600401610d79906137c5565b601d80549115156101000261ff0019909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612ae2826117f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612b253382612d16565b612b415760405162461bcd60e51b8152600401610d7990613bf6565b610eaa838383612dd8565b6000611282828461399c565b60006112828284613bd7565b6110f3828260405180602001604052806000815250612f78565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612bda3383612d16565b612bf65760405162461bcd60e51b8152600401610d7990613bf6565b61245c84848484612fab565b6060600c8054610c8e9061378a565b606081612c355750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c5f5780612c498161385e565b9150612c589050600a83613c5d565b9150612c39565b6000816001600160401b03811115612c7957612c79613454565b6040519080825280601f01601f191660200182016040528015612ca3576020820181803683370190505b5090505b8415612d0e57612cb8600183613abc565b9150612cc5600a86613c71565b612cd090603061399c565b60f81b818381518110612ce557612ce5613879565b60200101906001600160f81b031916908160001a905350612d07600a86613c5d565b9450612ca7565b949350505050565b6000612d2182612a90565b612d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d79565b6000612d8d836117f1565b9050806001600160a01b0316846001600160a01b03161480612dc85750836001600160a01b0316612dbd84610d11565b6001600160a01b0316145b80612d0e5750612d0e8185612979565b826001600160a01b0316612deb826117f1565b6001600160a01b031614612e535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d79565b6001600160a01b038216612eb55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d79565b612ec0600082612aad565b6001600160a01b0383166000908152600360205260408120805460019290612ee9908490613abc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f1790849061399c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612f828383612fde565b612f8f6000848484613111565b610eaa5760405162461bcd60e51b8152600401610d7990613c85565b612fb6848484612dd8565b612fc284848484613111565b61245c5760405162461bcd60e51b8152600401610d7990613c85565b6001600160a01b0382166130345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d79565b61303d81612a90565b1561308a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d79565b6001600160a01b03821660009081526003602052604081208054600192906130b390849061399c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561320457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613155903390899088908890600401613cd7565b6020604051808303816000875af1925050508015613190575060408051601f3d908101601f1916820190925261318d91810190613d14565b60015b6131ea573d8080156131be576040519150601f19603f3d011682016040523d82523d6000602084013e6131c3565b606091505b5080516131e25760405162461bcd60e51b8152600401610d7990613c85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612d0e565b506001949350505050565b82805461321b9061378a565b90600052602060002090601f01602090048101928261323d5760008555613283565b82601f1061325657805160ff1916838001178555613283565b82800160010185558215613283579182015b82811115613283578251825591602001919060010190613268565b5061328f929150613293565b5090565b5b8082111561328f5760008155600101613294565b6001600160e01b031981168114612a4457600080fd5b6000602082840312156132d057600080fd5b8135611282816132a8565b60005b838110156132f65781810151838201526020016132de565b8381111561245c5750506000910152565b6000815180845261331f8160208601602086016132db565b601f01601f19169290920160200192915050565b6020815260006112826020830184613307565b60006020828403121561335857600080fd5b5035919050565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461338a57600080fd5b919050565b6000602082840312156133a157600080fd5b61128282613373565b600080604083850312156133bd57600080fd5b6133c683613373565b946020939093013593505050565b6000806000606084860312156133e957600080fd5b6133f284613373565b925061340060208501613373565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156134485783518352928401929184019160010161342c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561349257613492613454565b604052919050565b60006001600160401b038211156134b3576134b3613454565b5060051b60200190565b600060208083850312156134d057600080fd5b82356001600160401b038111156134e657600080fd5b8301601f810185136134f757600080fd5b803561350a6135058261349a565b61346a565b81815260059190911b8201830190838101908783111561352957600080fd5b928401925b828410156135475783358252928401929084019061352e565b979650505050505050565b60006001600160401b0383111561356b5761356b613454565b61357e601f8401601f191660200161346a565b905082815283838301111561359257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156135bb57600080fd5b81356001600160401b038111156135d157600080fd5b8201601f810184136135e257600080fd5b612d0e84823560208401613552565b6000806020838503121561360457600080fd5b82356001600160401b038082111561361b57600080fd5b818501915085601f83011261362f57600080fd5b81358181111561363e57600080fd5b8660208260051b850101111561365357600080fd5b60209290920196919550909350505050565b8035801515811461338a57600080fd5b6000806040838503121561368857600080fd5b61369183613373565b915061369f60208401613665565b90509250929050565b600080600080608085870312156136be57600080fd5b6136c785613373565b93506136d560208601613373565b92506040850135915060608501356001600160401b038111156136f757600080fd5b8501601f8101871361370857600080fd5b61371787823560208401613552565b91505092959194509250565b6000806040838503121561373657600080fd5b50508035926020909101359150565b6000806040838503121561375857600080fd5b61376183613373565b915061369f60208401613373565b60006020828403121561378157600080fd5b61128282613665565b600181811c9082168061379e57607f821691505b602082108114156137bf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f5472616e7366657273206172656e277420616c6c6f7765642079657421000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008161385657613856613831565b506000190190565b600060001982141561387257613872613831565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156138a157600080fd5b5051919050565b6020808252602c908201527f43616e6e6f7420696e74657261637420626563617573652073616c652068617360408201526b081b9bdd081cdd185c9d195960a21b606082015260800190565b602080825260179082015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b60208082526022908201527f4d696e74696e672067656e6573697320686173206265656e2064697361626c65604082015261642160f01b606082015260800190565b600082198211156139af576139af613831565b500190565b6020808252601e908201527f46726565204d696e74696e6720706572696f642068617320656e646564210000604082015260600190565b60208082526024908201527f416c6c2047656e65736973204461696a756b696e677a207765726520636c61696040820152636d65642160e01b606082015260800190565b60208082526025908201527f416c6c207468652066726565206d696e74732068617665206265656e20636c61604082015264696d65642160d81b606082015260800190565b60208082526028908201527f596f7520616c726561647920636c61696d656420796f75722066726565206461604082015267696a756b696e672160c01b606082015260800190565b600082821015613ace57613ace613831565b500390565b60006020808385031215613ae657600080fd5b82516001600160401b03811115613afc57600080fd5b8301601f81018513613b0d57600080fd5b8051613b1b6135058261349a565b81815260059190911b82018301908381019087831115613b3a57600080fd5b928401925b8284101561354757835182529284019290840190613b3f565b60008351613b6a8184602088016132db565b835190830190613b7e8183602088016132db565b01949350505050565b60208082526030908201527f43616e6e6f7420696e74657261637420776974682061204461696a754b696e6760408201526f3d103cb7ba903237903737ba1037bbb760811b606082015260800190565b6000816000190483118215151615613bf157613bf1613831565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082613c6c57613c6c613c47565b500490565b600082613c8057613c80613c47565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d0a90830184613307565b9695505050505050565b600060208284031215613d2657600080fd5b8151611282816132a856fea26469706673582212204424cdc6417083ec4faedf95a9e107de9ed851447da744b36936d29add4aac4e64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106103b55760003560e01c806371264eac116101f9578063b88d4fde1161011e578063da312e1f116100b6578063e55f58bb1161007a578063e55f58bb14610b97578063e95cddbc14610bad578063e985e9c514610bcd578063f2fde38b14610bed578063f88d58ff14610c0d57600080fd5b8063da312e1f14610afe578063da86043014610b1e578063dcb5c8fd14610b34578063dfecff1d14610b54578063e2b26b1514610b6a57600080fd5b8063b88d4fde146109f8578063b96ce5a214610a18578063bc5c8f8b14610a38578063bef97c8714610a58578063c2cfc4fa14610a72578063c87b56dd14610a92578063d2dec78814610ab2578063d5abeb0114610ac8578063d9ecad7b14610ade57600080fd5b80639b39f5f4116101915780639b39f5f4146109135780639bcf6faa14610933578063a035b1fe14610953578063a0712d6814610969578063a22cb4651461097c578063a262dfd71461099c578063a5324093146109bc578063b166e196146109e8578063b70a0117146109f057600080fd5b806371264eac1461081e578063715018a61461083e578063732496c9146108535780637d7c4cfb146108695780637ebf2aea14610889578063819b25ba146108a95780638da5cb5b146108c957806391b7f5ed146108de57806395d89b41146108fe57600080fd5b80633c276d86116102df57806355f804b31161027757806355f804b31461071857806359523d26146107385780635c4e80641461074b5780636352211e14610753578063642b82af146107735780636f198a8f146107895780636f73caf0146107a95780637086e08d146107de57806370a08231146107fe57600080fd5b80633c276d86146106145780633ccfd60b1461062a57806340b8d9881461063f57806341949ee01461065f57806342842e0e14610675578063438b6300146106955780634f5dde48146106c257806353526603146106e2578063539cb1e71461070257600080fd5b80631e98165e116103525780631e98165e146104f157806323b872dd146105115780632459e8d6146105315780632a5f510e146105515780632bba9fe6146105675780633299c120146105865780633328e70a1461059c578063359170e6146105c957806335c66d37146105de57600080fd5b806240e050146103ba57806301ffc9a7146103e257806306fdde0314610412578063081812fc14610434578063089f6af014610461578063095ea7b31461048e57806316317c21146104b057806318160ddd146104c65780631e6d1321146104db575b600080fd5b3480156103c657600080fd5b506103cf603281565b6040519081526020015b60405180910390f35b3480156103ee57600080fd5b506104026103fd3660046132be565b610c2d565b60405190151581526020016103d9565b34801561041e57600080fd5b50610427610c7f565b6040516103d99190613333565b34801561044057600080fd5b5061045461044f366004613346565b610d11565b6040516103d9919061335f565b34801561046d57600080fd5b506103cf61047c36600461338f565b60216020526000908152604090205481565b34801561049a57600080fd5b506104ae6104a93660046133aa565b610d9e565b005b3480156104bc57600080fd5b506103cf60115481565b3480156104d257600080fd5b506103cf610eaf565b3480156104e757600080fd5b506103cf60105481565b3480156104fd57600080fd5b506104ae61050c36600461338f565b610ebf565b34801561051d57600080fd5b506104ae61052c3660046133d4565b610f10565b34801561053d57600080fd5b50601b54610454906001600160a01b031681565b34801561055d57600080fd5b506103cf60175481565b34801561057357600080fd5b50601d5461040290610100900460ff1681565b34801561059257600080fd5b506103cf600e5481565b3480156105a857600080fd5b506103cf6105b736600461338f565b601f6020526000908152604090205481565b3480156105d557600080fd5b506104ae611057565b3480156105ea57600080fd5b506103cf6105f936600461338f565b6001600160a01b031660009081526021602052604090205490565b34801561062057600080fd5b506103cf60195481565b34801561063657600080fd5b506104ae611095565b34801561064b57600080fd5b50600b54610454906001600160a01b031681565b34801561066b57600080fd5b506103cf60135481565b34801561068157600080fd5b506104ae6106903660046133d4565b6110f7565b3480156106a157600080fd5b506106b56106b036600461338f565b611134565b6040516103d99190613410565b3480156106ce57600080fd5b506103cf6106dd36600461338f565b61120c565b3480156106ee57600080fd5b506106b56106fd3660046134bd565b611289565b34801561070e57600080fd5b506103cf60155481565b34801561072457600080fd5b506104ae6107333660046135a9565b61135f565b6104ae610746366004613346565b6113a1565b6104ae611624565b34801561075f57600080fd5b5061045461076e366004613346565b6117f1565b34801561077f57600080fd5b506103cf60185481565b34801561079557600080fd5b506104ae6107a436600461338f565b611868565b3480156107b557600080fd5b506103cf6107c436600461338f565b6001600160a01b0316600090815260208052604090205490565b3480156107ea57600080fd5b506104ae6107f93660046135f1565b6118b9565b34801561080a57600080fd5b506103cf61081936600461338f565b61194c565b34801561082a57600080fd5b50600854610454906001600160a01b031681565b34801561084a57600080fd5b506104ae6119d3565b34801561085f57600080fd5b506103cf600f5481565b34801561087557600080fd5b506104ae610884366004613346565b611a0e565b34801561089557600080fd5b506104ae6108a4366004613346565b611a42565b3480156108b557600080fd5b506104ae6108c4366004613346565b611a76565b3480156108d557600080fd5b50610454611b89565b3480156108ea57600080fd5b506104ae6108f9366004613346565b611b98565b34801561090a57600080fd5b50610427611bcc565b34801561091f57600080fd5b50600a54610454906001600160a01b031681565b34801561093f57600080fd5b506104ae61094e36600461338f565b611bdb565b34801561095f57600080fd5b506103cf60165481565b6104ae610977366004613346565b611c2c565b34801561098857600080fd5b506104ae610997366004613675565b611e03565b3480156109a857600080fd5b506104ae6109b7366004613346565b611ec4565b3480156109c857600080fd5b506103cf6109d736600461338f565b602080526000908152604090205481565b6104ae611ef8565b6104ae612139565b348015610a0457600080fd5b506104ae610a133660046136a8565b612314565b348015610a2457600080fd5b506104ae610a3336600461338f565b612462565b348015610a4457600080fd5b50600954610454906001600160a01b031681565b348015610a6457600080fd5b50601d546104029060ff1681565b348015610a7e57600080fd5b506106b5610a8d36600461338f565b6124b3565b348015610a9e57600080fd5b50610427610aad366004613346565b612528565b348015610abe57600080fd5b506103cf60145481565b348015610ad457600080fd5b506103cf600d5481565b348015610aea57600080fd5b506104ae610af9366004613723565b6125f2565b348015610b0a57600080fd5b506104ae610b19366004613346565b6128c0565b348015610b2a57600080fd5b506103cf601c5481565b348015610b4057600080fd5b506104ae610b4f36600461338f565b6128f4565b348015610b6057600080fd5b506103cf601a5481565b348015610b7657600080fd5b506103cf610b8536600461338f565b601e6020526000908152604090205481565b348015610ba357600080fd5b506103cf60125481565b348015610bb957600080fd5b506104ae610bc8366004613346565b612945565b348015610bd957600080fd5b50610402610be8366004613745565b612979565b348015610bf957600080fd5b506104ae610c0836600461338f565b6129a7565b348015610c1957600080fd5b506104ae610c2836600461376f565b612a47565b60006001600160e01b031982166380ac58cd60e01b1480610c5e57506001600160e01b03198216635b5e139f60e01b145b80610c7957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610c8e9061378a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba9061378a565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b5050505050905090565b6000610d1c82612a90565b610d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610da9826117f1565b9050806001600160a01b0316836001600160a01b03161415610e175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d79565b336001600160a01b0382161480610e335750610e338133612979565b610ea05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610d79565b610eaa8383612aad565b505050565b6000610eba60075490565b905090565b33610ec8611b89565b6001600160a01b031614610eee5760405162461bcd60e51b8152600401610d79906137c5565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b601d5460ff16610f325760405162461bcd60e51b8152600401610d79906137fa565b60085460405163b5df11d560e01b81526001600160a01b03858116600483015284811660248301529091169063b5df11d590604401600060405180830381600087803b158015610f8157600080fd5b505af1158015610f95573d6000803e3d6000fd5b50505050600e548110610ff9576001600160a01b0383166000908152601f60205260408120805491610fc683613847565b90915550506001600160a01b0382166000908152601f60205260408120805491610fef8361385e565b919050555061104c565b6001600160a01b0383166000908152601e6020526040812080549161101d83613847565b90915550506001600160a01b0382166000908152601e602052604081208054916110468361385e565b91905055505b610eaa838383612b1b565b33611060611b89565b6001600160a01b0316146110865760405162461bcd60e51b8152600401610d79906137c5565b601d805460ff19166001179055565b3361109e611b89565b6001600160a01b0316146110c45760405162461bcd60e51b8152600401610d79906137c5565b6040514790339082156108fc029083906000818181858888f193505050501580156110f3573d6000803e3d6000fd5b5050565b601d5460ff166111195760405162461bcd60e51b8152600401610d79906137fa565b610eaa83838360405180602001604052806000815250612314565b606060006111418361194c565b9050600061114e60075490565b9050600080836001600160401b0381111561116b5761116b613454565b604051908082528060200260200182016040528015611194578160200160208202803683370190505b50905060005b8381101561120257866001600160a01b03166111b5826117f1565b6001600160a01b031614156111f057808284815181106111d7576111d7613879565b6020908102919091010152826111ec8161385e565b9350505b806111fa8161385e565b91505061119a565b5095945050505050565b6009546040516370a0823160e01b815260009182916001600160a01b03909116906370a082319061124190869060040161335f565b602060405180830381865afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611282919061388f565b9392505050565b6060600082516001600160401b038111156112a6576112a6613454565b6040519080825280602002602001820160405280156112cf578160200160208202803683370190505b50905060005b8351811015611358576014548482815181106112f3576112f3613879565b60200260200101511061132557600182828151811061131457611314613879565b602002602001018181525050611346565b600082828151811061133957611339613879565b6020026020010181815250505b806113508161385e565b9150506112d5565b5092915050565b33611368611b89565b6001600160a01b03161461138e5760405162461bcd60e51b8152600401610d79906137c5565b80516110f390600c90602084019061320f565b601954158015906113b3575060195442115b6113cf5760405162461bcd60e51b8152600401610d79906138a8565b60006113da60075490565b90506000821180156113ec5750600b82105b6114085760405162461bcd60e51b8152600401610d79906138f4565b600e546114158284612b4c565b11156114335760405162461bcd60e51b8152600401610d7990613925565b600b546040516370a0823160e01b81526001600160a01b03909116906370a082319061146390339060040161335f565b602060405180830381865afa158015611480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a4919061388f565b601c546114b19084612b58565b106114f85760405162461bcd60e51b81526020600482015260176024820152764e6f7420656e6f75676820534f5320746f206d696e742160481b6044820152606401610d79565b601d54610100900460ff16156115205760405162461bcd60e51b8152600401610d799061395a565b600b54601b54601c546001600160a01b03928316926323b872dd92339291169061154a9087612b58565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b5050505060005b82811015610eaa576115cf336115ca838561399c565b612b64565b336000908152601e602052604081208054916115ea8361385e565b9091555050601480549060006115ff8361385e565b9190505550611612600780546001019055565b8061161c8161385e565b9150506115b4565b60195415801590611636575060195442115b6116525760405162461bcd60e51b8152600401610d79906138a8565b601a5442106116735760405162461bcd60e51b8152600401610d79906139b4565b600061167e60075490565b9050600e548111156116a25760405162461bcd60e51b8152600401610d79906139eb565b60016116ad3361120c565b10156116fb5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f6e2774206f776e20616e7920446f6f646c6573210000000000006044820152606401610d79565b600f5461170982600161399c565b11156117275760405162461bcd60e51b8152600401610d7990613a2f565b3360009081526020805260409020546001116117555760405162461bcd60e51b8152600401610d7990613a74565b601d54610100900460ff161561177d5760405162461bcd60e51b8152600401610d799061395a565b6117873382612b64565b611795600780546001019055565b3360009081526020808052604080832060019055601e90915281208054916117bc8361385e565b9091555050601480549060006117d18361385e565b91905055506001601260008282546117e9919061399c565b909155505050565b6000818152600260205260408120546001600160a01b031680610c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d79565b33611871611b89565b6001600160a01b0316146118975760405162461bcd60e51b8152600401610d79906137c5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b336118c2611b89565b6001600160a01b0316146118e85760405162461bcd60e51b8152600401610d79906137c5565b60005b81811015610eaa5760016021600085858581811061190b5761190b613879565b9050602002016020810190611920919061338f565b6001600160a01b03168152602081019190915260400160002055806119448161385e565b9150506118eb565b60006001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d79565b506001600160a01b031660009081526003602052604090205490565b336119dc611b89565b6001600160a01b031614611a025760405162461bcd60e51b8152600401610d79906137c5565b611a0c6000612b7e565b565b33611a17611b89565b6001600160a01b031614611a3d5760405162461bcd60e51b8152600401610d79906137c5565b601755565b33611a4b611b89565b6001600160a01b031614611a715760405162461bcd60e51b8152600401610d79906137c5565b601a55565b33611a7f611b89565b6001600160a01b031614611aa55760405162461bcd60e51b8152600401610d79906137c5565b6000611ab060075490565b9050603282601154611ac2919061399c565b10611b055760405162461bcd60e51b815260206004820152601360248201527263616e6e6f742072657365727665206d6f726560681b6044820152606401610d79565b60005b82811015610eaa57611b1e336115ca838561399c565b336000908152601e60205260408120805491611b398361385e565b909155505060148054906000611b4e8361385e565b9190505550611b61600780546001019055565b60118054906000611b718361385e565b91905055508080611b819061385e565b915050611b08565b6006546001600160a01b031690565b33611ba1611b89565b6001600160a01b031614611bc75760405162461bcd60e51b8152600401610d79906137c5565b601655565b606060018054610c8e9061378a565b33611be4611b89565b6001600160a01b031614611c0a5760405162461bcd60e51b8152600401610d79906137c5565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60195415801590611c3e575060195442115b611c5a5760405162461bcd60e51b8152600401610d79906138a8565b6000611c6560075490565b9050600082118015611c775750600b82105b611c935760405162461bcd60e51b8152600401610d79906138f4565b601a544211611ce657601054600f54611cac919061399c565b600e54611cb99190613abc565b611cc38284612b4c565b1115611ce15760405162461bcd60e51b8152600401610d7990613925565b611d11565b600e54611cf38284612b4c565b1115611d115760405162461bcd60e51b8152600401610d7990613925565b6016543490611d209084612b58565b14611d6d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610d79565b601d54610100900460ff1615611d955760405162461bcd60e51b8152600401610d799061395a565b60005b82811015610eaa57611dae336115ca838561399c565b336000908152601e60205260408120805491611dc98361385e565b909155505060148054906000611dde8361385e565b9190505550611df1600780546001019055565b80611dfb8161385e565b915050611d98565b6001600160a01b038216331415611e585760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610d79565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33611ecd611b89565b6001600160a01b031614611ef35760405162461bcd60e51b8152600401610d79906137c5565b601955565b60195415801590611f0a575060195442115b611f265760405162461bcd60e51b8152600401610d79906138a8565b601a544210611f475760405162461bcd60e51b8152600401610d79906139b4565b6000611f5260075490565b600a5460405162438b6360e81b81529192506000916001600160a01b039091169063438b630090611f8790339060040161335f565b600060405180830381865afa158015611fa4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fcc9190810190613ad3565b9050600e54821115611ff05760405162461bcd60e51b8152600401610d79906139eb565b600f54611ffe83600161399c565b111561201c5760405162461bcd60e51b8152600401610d7990613a2f565b33600090815260208052604090205460011161204a5760405162461bcd60e51b8152600401610d7990613a74565b60018151101561209c5760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f6e2774206f776e20616e79204b61696a754b696e677a210000006044820152606401610d79565b601d54610100900460ff16156120c45760405162461bcd60e51b8152600401610d799061395a565b6120ce3383612b64565b6120dc600780546001019055565b3360009081526020808052604080832060019055601e90915281208054916121038361385e565b9091555050601480549060006121188361385e565b9190505550600160126000828254612130919061399c565b90915550505050565b6019541580159061214b575060195442115b6121675760405162461bcd60e51b8152600401610d79906138a8565b601a5442106121885760405162461bcd60e51b8152600401610d79906139b4565b600061219360075490565b9050600e548111156121b75760405162461bcd60e51b8152600401610d79906139eb565b6010546121c582600161399c565b11156122135760405162461bcd60e51b815260206004820181905260248201527f416c6c206769766561776179206d696e7473207765726520636c61696d6564216044820152606401610d79565b336000908152602160205260409020546001111561227f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e2774206861766520616e792066726565206d696e7473206c6560448201526266742160e81b6064820152608401610d79565b601d54610100900460ff16156122a75760405162461bcd60e51b8152600401610d799061395a565b6122b13382612b64565b6122bf600780546001019055565b336000908152602160209081526040808320839055601e90915281208054916122e78361385e565b9091555050601480549060006122fc8361385e565b91905055506001601360008282546117e9919061399c565b601d5460ff166123365760405162461bcd60e51b8152600401610d79906137fa565b60085460405163b5df11d560e01b81526001600160a01b03868116600483015285811660248301529091169063b5df11d590604401600060405180830381600087803b15801561238557600080fd5b505af1158015612399573d6000803e3d6000fd5b50505050600e5482106123fd576001600160a01b0384166000908152601f602052604081208054916123ca83613847565b90915550506001600160a01b0383166000908152601f602052604081208054916123f38361385e565b9190505550612450565b6001600160a01b0384166000908152601e6020526040812080549161242183613847565b90915550506001600160a01b0383166000908152601e6020526040812080549161244a8361385e565b91905055505b61245c84848484612bd0565b50505050565b3361246b611b89565b6001600160a01b0316146124915760405162461bcd60e51b8152600401610d79906137c5565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405162438b6360e81b81526060916001600160a01b03169063438b6300906124e390859060040161335f565b600060405180830381865afa158015612500573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c799190810190613ad3565b606061253382612a90565b6125975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d79565b60006125a1612c02565b905060008151116125c15760405180602001604052806000815250611282565b806125cb84612c11565b6040516020016125dc929190613b58565b6040516020818303038152906040529392505050565b81336125fd826117f1565b6001600160a01b0316146126235760405162461bcd60e51b8152600401610d7990613b87565b813361262e826117f1565b6001600160a01b0316146126545760405162461bcd60e51b8152600401610d7990613b87565b600061265f60075490565b601d54909150610100900460ff166126b95760405162461bcd60e51b815260206004820152601b60248201527f4272656564696e672069736e277420656e61626c6564207965742100000000006044820152606401610d79565b600d5481106127145760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f7420627265656420616e79206d6f72652062616279204461696a756044820152607360f81b6064820152608401610d79565b60145485108015612726575060145484105b6127895760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420627265656420776974682062616279204461696a757320287460448201526d68617473207369636b2062726f2960901b6064820152608401610d79565b838514156127d95760405162461bcd60e51b815260206004820152601e60248201527f4d7573742073656c6563742074776f20756e6971756520706172656e747300006044820152606401610d79565b6008546015546018546001600160a01b0390921691639dc29fac9133916128009190613bd7565b60175461280d919061399c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561285357600080fd5b505af1158015612867573d6000803e3d6000fd5b50506015805492509050600061287c8361385e565b919050555061288f600780546001019055565b6128993382612b64565b336000908152601f602052604081208054916128b48361385e565b91905055505050505050565b336128c9611b89565b6001600160a01b0316146128ef5760405162461bcd60e51b8152600401610d79906137c5565b601c55565b336128fd611b89565b6001600160a01b0316146129235760405162461bcd60e51b8152600401610d79906137c5565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3361294e611b89565b6001600160a01b0316146129745760405162461bcd60e51b8152600401610d79906137c5565b601855565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336129b0611b89565b6001600160a01b0316146129d65760405162461bcd60e51b8152600401610d79906137c5565b6001600160a01b038116612a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d79565b612a4481612b7e565b50565b33612a50611b89565b6001600160a01b031614612a765760405162461bcd60e51b8152600401610d79906137c5565b601d80549115156101000261ff0019909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612ae2826117f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612b253382612d16565b612b415760405162461bcd60e51b8152600401610d7990613bf6565b610eaa838383612dd8565b6000611282828461399c565b60006112828284613bd7565b6110f3828260405180602001604052806000815250612f78565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612bda3383612d16565b612bf65760405162461bcd60e51b8152600401610d7990613bf6565b61245c84848484612fab565b6060600c8054610c8e9061378a565b606081612c355750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c5f5780612c498161385e565b9150612c589050600a83613c5d565b9150612c39565b6000816001600160401b03811115612c7957612c79613454565b6040519080825280601f01601f191660200182016040528015612ca3576020820181803683370190505b5090505b8415612d0e57612cb8600183613abc565b9150612cc5600a86613c71565b612cd090603061399c565b60f81b818381518110612ce557612ce5613879565b60200101906001600160f81b031916908160001a905350612d07600a86613c5d565b9450612ca7565b949350505050565b6000612d2182612a90565b612d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d79565b6000612d8d836117f1565b9050806001600160a01b0316846001600160a01b03161480612dc85750836001600160a01b0316612dbd84610d11565b6001600160a01b0316145b80612d0e5750612d0e8185612979565b826001600160a01b0316612deb826117f1565b6001600160a01b031614612e535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d79565b6001600160a01b038216612eb55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d79565b612ec0600082612aad565b6001600160a01b0383166000908152600360205260408120805460019290612ee9908490613abc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f1790849061399c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612f828383612fde565b612f8f6000848484613111565b610eaa5760405162461bcd60e51b8152600401610d7990613c85565b612fb6848484612dd8565b612fc284848484613111565b61245c5760405162461bcd60e51b8152600401610d7990613c85565b6001600160a01b0382166130345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d79565b61303d81612a90565b1561308a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d79565b6001600160a01b03821660009081526003602052604081208054600192906130b390849061399c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561320457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613155903390899088908890600401613cd7565b6020604051808303816000875af1925050508015613190575060408051601f3d908101601f1916820190925261318d91810190613d14565b60015b6131ea573d8080156131be576040519150601f19603f3d011682016040523d82523d6000602084013e6131c3565b606091505b5080516131e25760405162461bcd60e51b8152600401610d7990613c85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612d0e565b506001949350505050565b82805461321b9061378a565b90600052602060002090601f01602090048101928261323d5760008555613283565b82601f1061325657805160ff1916838001178555613283565b82800160010185558215613283579182015b82811115613283578251825591602001919060010190613268565b5061328f929150613293565b5090565b5b8082111561328f5760008155600101613294565b6001600160e01b031981168114612a4457600080fd5b6000602082840312156132d057600080fd5b8135611282816132a8565b60005b838110156132f65781810151838201526020016132de565b8381111561245c5750506000910152565b6000815180845261331f8160208601602086016132db565b601f01601f19169290920160200192915050565b6020815260006112826020830184613307565b60006020828403121561335857600080fd5b5035919050565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461338a57600080fd5b919050565b6000602082840312156133a157600080fd5b61128282613373565b600080604083850312156133bd57600080fd5b6133c683613373565b946020939093013593505050565b6000806000606084860312156133e957600080fd5b6133f284613373565b925061340060208501613373565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156134485783518352928401929184019160010161342c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561349257613492613454565b604052919050565b60006001600160401b038211156134b3576134b3613454565b5060051b60200190565b600060208083850312156134d057600080fd5b82356001600160401b038111156134e657600080fd5b8301601f810185136134f757600080fd5b803561350a6135058261349a565b61346a565b81815260059190911b8201830190838101908783111561352957600080fd5b928401925b828410156135475783358252928401929084019061352e565b979650505050505050565b60006001600160401b0383111561356b5761356b613454565b61357e601f8401601f191660200161346a565b905082815283838301111561359257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156135bb57600080fd5b81356001600160401b038111156135d157600080fd5b8201601f810184136135e257600080fd5b612d0e84823560208401613552565b6000806020838503121561360457600080fd5b82356001600160401b038082111561361b57600080fd5b818501915085601f83011261362f57600080fd5b81358181111561363e57600080fd5b8660208260051b850101111561365357600080fd5b60209290920196919550909350505050565b8035801515811461338a57600080fd5b6000806040838503121561368857600080fd5b61369183613373565b915061369f60208401613665565b90509250929050565b600080600080608085870312156136be57600080fd5b6136c785613373565b93506136d560208601613373565b92506040850135915060608501356001600160401b038111156136f757600080fd5b8501601f8101871361370857600080fd5b61371787823560208401613552565b91505092959194509250565b6000806040838503121561373657600080fd5b50508035926020909101359150565b6000806040838503121561375857600080fd5b61376183613373565b915061369f60208401613373565b60006020828403121561378157600080fd5b61128282613665565b600181811c9082168061379e57607f821691505b602082108114156137bf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f5472616e7366657273206172656e277420616c6c6f7765642079657421000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008161385657613856613831565b506000190190565b600060001982141561387257613872613831565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156138a157600080fd5b5051919050565b6020808252602c908201527f43616e6e6f7420696e74657261637420626563617573652073616c652068617360408201526b081b9bdd081cdd185c9d195960a21b606082015260800190565b602080825260179082015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b60208082526022908201527f4d696e74696e672067656e6573697320686173206265656e2064697361626c65604082015261642160f01b606082015260800190565b600082198211156139af576139af613831565b500190565b6020808252601e908201527f46726565204d696e74696e6720706572696f642068617320656e646564210000604082015260600190565b60208082526024908201527f416c6c2047656e65736973204461696a756b696e677a207765726520636c61696040820152636d65642160e01b606082015260800190565b60208082526025908201527f416c6c207468652066726565206d696e74732068617665206265656e20636c61604082015264696d65642160d81b606082015260800190565b60208082526028908201527f596f7520616c726561647920636c61696d656420796f75722066726565206461604082015267696a756b696e672160c01b606082015260800190565b600082821015613ace57613ace613831565b500390565b60006020808385031215613ae657600080fd5b82516001600160401b03811115613afc57600080fd5b8301601f81018513613b0d57600080fd5b8051613b1b6135058261349a565b81815260059190911b82018301908381019087831115613b3a57600080fd5b928401925b8284101561354757835182529284019290840190613b3f565b60008351613b6a8184602088016132db565b835190830190613b7e8183602088016132db565b01949350505050565b60208082526030908201527f43616e6e6f7420696e74657261637420776974682061204461696a754b696e6760408201526f3d103cb7ba903237903737ba1037bbb760811b606082015260800190565b6000816000190483118215151615613bf157613bf1613831565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082613c6c57613c6c613c47565b500490565b600082613c8057613c80613c47565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d0a90830184613307565b9695505050505050565b600060208284031215613d2657600080fd5b8151611282816132a856fea26469706673582212204424cdc6417083ec4faedf95a9e107de9ed851447da744b36936d29add4aac4e64736f6c634300080b0033

Deployed Bytecode Sourcemap

43456:16795:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43804:39;;;;;;;;;;;;43841:2;43804:39;;;;;160:25:1;;;148:2;133:18;43804:39:0;;;;;;;;19855:305;;;;;;;;;;-1:-1:-1;19855:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;19855:305:0;582:187:1;20800:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22359:221::-;;;;;;;;;;-1:-1:-1;22359:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45231:51::-;;;;;;;;;;-1:-1:-1;45231:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;21882:411;;;;;;;;;;-1:-1:-1;21882:411:0;;;;;:::i;:::-;;:::i;:::-;;44399:31;;;;;;;;;;;;;;;;54357:104;;;;;;;;;;;;;:::i;44276:35::-;;;;;;;;;;;;;;;;58847:110;;;;;;;;;;-1:-1:-1;58847:110:0;;;;;:::i;:::-;;:::i;59226:405::-;;;;;;;;;;-1:-1:-1;59226:405:0;;;;;:::i;:::-;;:::i;44840:24::-;;;;;;;;;;-1:-1:-1;44840:24:0;;;;-1:-1:-1;;;;;44840:24:0;;;44669:38;;;;;;;;;;;;;;;;44958:35;;;;;;;;;;-1:-1:-1;44958:35:0;;;;;;;;;;;44002:33;;;;;;;;;;;;;;;;45124:46;;;;;;;;;;-1:-1:-1;45124:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;58203:92;;;;;;;;;;;;;:::i;47422:135::-;;;;;;;;;;-1:-1:-1;47422:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;47523:26:0;47496:7;47523:26;;;:16;:26;;;;;;;47422:135;44762:33;;;;;;;;;;;;;;;;55696:143;;;;;;;;;;;;;:::i;43745:15::-;;;;;;;;;;-1:-1:-1;43745:15:0;;;;-1:-1:-1;;;;;43745:15:0;;;44476:36;;;;;;;;;;;;;;;;59639:163;;;;;;;;;;-1:-1:-1;59639:163:0;;;;;:::i;:::-;;:::i;55108:486::-;;;;;;;;;;-1:-1:-1;55108:486:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46901:162::-;;;;;;;;;;-1:-1:-1;46901:162:0;;;;;:::i;:::-;;:::i;54627:388::-;;;;;;;;;;-1:-1:-1;54627:388:0;;;;;:::i;:::-;;:::i;44553:28::-;;;;;;;;;;;;;;;;57771:96;;;;;;;;;;-1:-1:-1;57771:96:0;;;;;:::i;:::-;;:::i;51783:803::-;;;;;;:::i;:::-;;:::i;48053:763::-;;;:::i;20494:239::-;;;;;;;;;;-1:-1:-1;20494:239:0;;;;;:::i;:::-;;:::i;44714:41::-;;;;;;;;;;;;;;;;59055:95;;;;;;;;;;-1:-1:-1;59055:95:0;;;;;:::i;:::-;;:::i;47184:127::-;;;;;;;;;;-1:-1:-1;47184:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;47281:22:0;47254:7;47281:22;;;:12;:22;;;;;;;47184:127;47691:223;;;;;;;;;;-1:-1:-1;47691:223:0;;;;;:::i;:::-;;:::i;20224:208::-;;;;;;;;;;-1:-1:-1;20224:208:0;;;;;:::i;:::-;;:::i;43659:13::-;;;;;;;;;;-1:-1:-1;43659:13:0;;;;-1:-1:-1;;;;;43659:13:0;;;33541:94;;;;;;;;;;;;;:::i;44165:33::-;;;;;;;;;;;;;;;;56396:106;;;;;;;;;;-1:-1:-1;56396:106:0;;;;;:::i;:::-;;:::i;56174:131::-;;;;;;;;;;-1:-1:-1;56174:131:0;;;;;:::i;:::-;;:::i;53817:433::-;;;;;;;;;;-1:-1:-1;53817:433:0;;;;;:::i;:::-;;:::i;32890:87::-;;;;;;;;;;;;;:::i;57105:84::-;;;;;;;;;;-1:-1:-1;57105:84:0;;;;;:::i;:::-;;:::i;20969:104::-;;;;;;;;;;;;;:::i;43709:29::-;;;;;;;;;;-1:-1:-1;43709:29:0;;;;-1:-1:-1;;;;;43709:29:0;;;58424:98;;;;;;;;;;-1:-1:-1;58424:98:0;;;;;:::i;:::-;;:::i;44628:33::-;;;;;;;;;;;;;;;;50685:927;;;;;;:::i;:::-;;:::i;22652:295::-;;;;;;;;;;-1:-1:-1;22652:295:0;;;;;:::i;:::-;;:::i;55929:134::-;;;;;;;;;;-1:-1:-1;55929:134:0;;;;;:::i;:::-;;:::i;45177:47::-;;;;;;;;;;-1:-1:-1;45177:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;48957:817;;;:::i;49903:685::-;;;:::i;59810:438::-;;;;;;;;;;-1:-1:-1;59810:438:0;;;;;:::i;:::-;;:::i;57587:96::-;;;;;;;;;;-1:-1:-1;57587:96:0;;;;;:::i;:::-;;:::i;43679:23::-;;;;;;;;;;-1:-1:-1;43679:23:0;;;;-1:-1:-1;;;;;43679:23:0;;;44915:36;;;;;;;;;;-1:-1:-1;44915:36:0;;;;;;;;46576:145;;;;;;;;;;-1:-1:-1;46576:145:0;;;;;:::i;:::-;;:::i;21144:334::-;;;;;;;;;;-1:-1:-1;21144:334:0;;;;;:::i;:::-;;:::i;44519:27::-;;;;;;;;;;;;;;;;43930:32;;;;;;;;;;;;;;;;52858:883;;;;;;;;;;-1:-1:-1;52858:883:0;;;;;:::i;:::-;;:::i;57329:96::-;;;;;;;;;;-1:-1:-1;57329:96:0;;;;;:::i;:::-;;:::i;44872:36::-;;;;;;;;;;;;;;;;58628:115;;;;;;;;;;-1:-1:-1;58628:115:0;;;;;:::i;:::-;;:::i;44802:31::-;;;;;;;;;;;;;;;;45068:49;;;;;;;;;;-1:-1:-1;45068:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;44437:32;;;;;;;;;;;;;;;;56633:132;;;;;;;;;;-1:-1:-1;56633:132:0;;;;;:::i;:::-;;:::i;23018:164::-;;;;;;;;;;-1:-1:-1;23018:164:0;;;;;:::i;:::-;;:::i;33790:192::-;;;;;;;;;;-1:-1:-1;33790:192:0;;;;;:::i;:::-;;:::i;56891:99::-;;;;;;;;;;-1:-1:-1;56891:99:0;;;;;:::i;:::-;;:::i;19855:305::-;19957:4;-1:-1:-1;;;;;;19994:40:0;;-1:-1:-1;;;19994:40:0;;:105;;-1:-1:-1;;;;;;;20051:48:0;;-1:-1:-1;;;20051:48:0;19994:105;:158;;;-1:-1:-1;;;;;;;;;;18571:40:0;;;20116:36;19974:178;19855:305;-1:-1:-1;;19855:305:0:o;20800:100::-;20854:13;20887:5;20880:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20800:100;:::o;22359:221::-;22435:7;22463:16;22471:7;22463;:16::i;:::-;22455:73;;;;-1:-1:-1;;;22455:73:0;;9780:2:1;22455:73:0;;;9762:21:1;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;-1:-1:-1;;;9909:18:1;;;9902:42;9961:19;;22455:73:0;;;;;;;;;-1:-1:-1;22548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22548:24:0;;22359:221::o;21882:411::-;21963:13;21979:23;21994:7;21979:14;:23::i;:::-;21963:39;;22027:5;-1:-1:-1;;;;;22021:11:0;:2;-1:-1:-1;;;;;22021:11:0;;;22013:57;;;;-1:-1:-1;;;22013:57:0;;10193:2:1;22013:57:0;;;10175:21:1;10232:2;10212:18;;;10205:30;10271:34;10251:18;;;10244:62;-1:-1:-1;;;10322:18:1;;;10315:31;10363:19;;22013:57:0;9991:397:1;22013:57:0;15641:10;-1:-1:-1;;;;;22105:21:0;;;;:62;;-1:-1:-1;22130:37:0;22147:5;15641:10;23018:164;:::i;22130:37::-;22083:168;;;;-1:-1:-1;;;22083:168:0;;10595:2:1;22083:168:0;;;10577:21:1;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;-1:-1:-1;;;10724:18:1;;;10717:54;10788:19;;22083:168:0;10393:420:1;22083:168:0;22264:21;22273:2;22277:7;22264:8;:21::i;:::-;21952:341;21882:411;;:::o;54357:104::-;54402:7;54429:24;:14;41861;;41769:114;54429:24;54422:31;;54357:104;:::o;58847:110::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;58921:7:::1;:28:::0;;-1:-1:-1;;;;;;58921:28:0::1;-1:-1:-1::0;;;;;58921:28:0;;;::::1;::::0;;;::::1;::::0;;58847:110::o;59226:405::-;46278:16;;;;46270:58;;;;-1:-1:-1;;;46270:58:0;;;;;;;:::i;:::-;59338:2:::1;::::0;:26:::1;::::0;-1:-1:-1;;;59338:26:0;;-1:-1:-1;;;;;11767:15:1;;;59338:26:0::1;::::0;::::1;11749:34:1::0;11819:15;;;11799:18;;;11792:43;59338:2:0;;::::1;::::0;:16:::1;::::0;11684:18:1;;59338:26:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;59392:11;;59381:7;:22;59377:196;;-1:-1:-1::0;;;;;59420:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;59454:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;:::-;;;;;;59377:196;;;-1:-1:-1::0;;;;;59504:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;59541:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;;;;;;59377:196;59585:38;59605:4;59611:2;59615:7;59585:19;:38::i;58203:92::-:0;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;58264:16:::1;:23:::0;;-1:-1:-1;;58264:23:0::1;58283:4;58264:23;::::0;;58203:92::o;55696:143::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;55794:37:::1;::::0;55762:21:::1;::::0;55802:10:::1;::::0;55794:37;::::1;;;::::0;55762:21;;55744:15:::1;55794:37:::0;55744:15;55794:37;55762:21;55802:10;55794:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55733:106;55696:143::o:0;59639:163::-;46278:16;;;;46270:58;;;;-1:-1:-1;;;46270:58:0;;;;;;;:::i;:::-;59755:39:::1;59772:4;59778:2;59782:7;59755:39;;;;;;;;;;;::::0;:16:::1;:39::i;55108:486::-:0;55166:16;55195:18;55216:16;55226:5;55216:9;:16::i;:::-;55195:37;;55243:14;55260:24;:14;41861;;41769:114;55260:24;55243:41;;55295:13;55325:25;55367:10;-1:-1:-1;;;;;55353:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55353:25:0;;55325:53;;55400:9;55395:164;55415:6;55411:1;:10;55395:164;;;55461:5;-1:-1:-1;;;;;55447:19:0;:10;55455:1;55447:7;:10::i;:::-;-1:-1:-1;;;;;55447:19:0;;55443:105;;;55505:1;55487:8;55496:5;55487:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;55525:7;;;;:::i;:::-;;;;55443:105;55423:3;;;;:::i;:::-;;;;55395:164;;;-1:-1:-1;55578:8:0;55108:486;-1:-1:-1;;;;;55108:486:0:o;46901:162::-;47003:7;;:27;;-1:-1:-1;;;47003:27:0;;46967:7;;;;-1:-1:-1;;;;;47003:7:0;;;;:17;;:27;;47021:8;;47003:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46987:43;46901:162;-1:-1:-1;;;46901:162:0:o;54627:388::-;54690:16;54719:25;54761:4;:11;-1:-1:-1;;;;;54747:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54747:26:0;;54719:54;;54791:9;54786:194;54806:4;:11;54802:1;:15;54786:194;;;54853:8;;54842:4;54847:1;54842:7;;;;;;;;:::i;:::-;;;;;;;:19;54838:131;;54896:1;54882:8;54891:1;54882:11;;;;;;;;:::i;:::-;;;;;;:15;;;;;54838:131;;;54952:1;54938:8;54947:1;54938:11;;;;;;;;:::i;:::-;;;;;;:15;;;;;54838:131;54819:3;;;;:::i;:::-;;;;54786:194;;;-1:-1:-1;54999:8:0;54627:388;-1:-1:-1;;54627:388:0:o;57771:96::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;57842:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;51783:803::-:0;45737:18;;:23;;;;:63;;;45782:18;;45764:15;:36;45737:63;45729:120;;;;-1:-1:-1;;;45729:120:0;;;;;;;:::i;:::-;51867:14:::1;51884:24;:14;41861::::0;;41769:114;51884:24:::1;51867:41;;51953:1;51937:13;:17;:39;;;;;51974:2;51958:13;:18;51937:39;51929:75;;;;-1:-1:-1::0;;;51929:75:0::1;;;;;;;:::i;:::-;52052:11;::::0;52023:25:::1;:6:::0;52034:13;52023:10:::1;:25::i;:::-;:40;;52015:85;;;;-1:-1:-1::0;;;52015:85:0::1;;;;;;;:::i;:::-;52149:3;::::0;:25:::1;::::0;-1:-1:-1;;;52149:25:0;;-1:-1:-1;;;;;52149:3:0;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;52163:10:::1;::::0;52149:25:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52119:8;::::0;:27:::1;::::0;52132:13;52119:12:::1;:27::i;:::-;:55;52111:91;;;::::0;-1:-1:-1;;;52111:91:0;;13908:2:1;52111:91:0::1;::::0;::::1;13890:21:1::0;13947:2;13927:18;;;13920:30;-1:-1:-1;;;13966:18:1;;;13959:53;14029:18;;52111:91:0::1;13706:347:1::0;52111:91:0::1;52222:15;::::0;::::1;::::0;::::1;;;52221:16;52213:63;;;;-1:-1:-1::0;;;52213:63:0::1;;;;;;;:::i;:::-;52289:3;::::0;52318:9:::1;::::0;52329:8:::1;::::0;-1:-1:-1;;;;;52289:3:0;;::::1;::::0;:16:::1;::::0;52306:10:::1;::::0;52318:9;::::1;::::0;52329:27:::1;::::0;52342:13;52329:12:::1;:27::i;:::-;52289:68;::::0;-1:-1:-1;;;;;;52289:68:0::1;::::0;;;;;;-1:-1:-1;;;;;14719:15:1;;;52289:68:0::1;::::0;::::1;14701:34:1::0;14771:15;;;;14751:18;;;14744:43;14803:18;;;14796:34;14636:18;;52289:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52375:9;52370:209;52390:13;52386:1;:17;52370:209;;;52425:33;52435:10;52447;52456:1:::0;52447:6;:10:::1;:::i;:::-;52425:9;:33::i;:::-;52488:10;52473:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;52516:8:0::1;:10:::0;;;:8:::1;:10;::::0;::::1;:::i;:::-;;;;;;52541:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;52541:26:::1;52405:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52370:209;;48053:763:::0;45737:18;;:23;;;;:63;;;45782:18;;45764:15;:36;45737:63;45729:120;;;;-1:-1:-1;;;45729:120:0;;;;;;;:::i;:::-;46038:16:::1;;46020:15;:34;46012:77;;;;-1:-1:-1::0;;;46012:77:0::1;;;;;;;:::i;:::-;48135:14:::2;48152:24;:14;41861::::0;;41769:114;48152:24:::2;48135:41;;48207:11;;48197:6;:21;;48189:70;;;;-1:-1:-1::0;;;48189:70:0::2;;;;;;;:::i;:::-;48312:1;48278:30;48297:10;48278:18;:30::i;:::-;:35;;48270:74;;;::::0;-1:-1:-1;;;48270:74:0;;15940:2:1;48270:74:0::2;::::0;::::2;15922:21:1::0;15979:2;15959:18;;;15952:30;16018:28;15998:18;;;15991:56;16064:18;;48270:74:0::2;15738:350:1::0;48270:74:0::2;48379:12;::::0;48364:10:::2;:6:::0;48373:1:::2;48364:10;:::i;:::-;48363:28;;48355:78;;;;-1:-1:-1::0;;;48355:78:0::2;;;;;;;:::i;:::-;48465:10;48452:24;::::0;;;:12:::2;:24:::0;;;;;;48479:1:::2;-1:-1:-1::0;48444:81:0::2;;;;-1:-1:-1::0;;;48444:81:0::2;;;;;;;:::i;:::-;48545:15;::::0;::::2;::::0;::::2;;;48544:16;48536:63;;;;-1:-1:-1::0;;;48536:63:0::2;;;;;;;:::i;:::-;48612:29;48622:10;48634:6;48612:9;:29::i;:::-;48652:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;48652:26:::2;48704:10;48691:24;::::0;;;:12:::2;:24:::0;;;;;;;48718:1:::2;48691:28:::0;;48730:14:::2;:26:::0;;;;;:28;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;48769:8:0::2;:10:::0;;;:8:::2;:10;::::0;::::2;:::i;:::-;;;;;;48807:1;48790:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;48053:763:0:o;20494:239::-;20566:7;20602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20602:16:0;20637:19;20629:73;;;;-1:-1:-1;;;20629:73:0;;17110:2:1;20629:73:0;;;17092:21:1;17149:2;17129:18;;;17122:30;17188:34;17168:18;;;17161:62;-1:-1:-1;;;17239:18:1;;;17232:39;17288:19;;20629:73:0;16908:405:1;59055:95:0;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;59124:3:::1;:18:::0;;-1:-1:-1;;;;;;59124:18:0::1;-1:-1:-1::0;;;;;59124:18:0;;;::::1;::::0;;;::::1;::::0;;59055:95::o;47691:223::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;47792:9:::1;47787:120;47803:28:::0;;::::1;47787:120;;;47894:1;47853:16;:38;47870:17;;47888:1;47870:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47853:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47853:38:0;:42;47833:3;::::1;::::0;::::1;:::i;:::-;;;;47787:120;;20224:208:::0;20296:7;-1:-1:-1;;;;;20324:19:0;;20316:74;;;;-1:-1:-1;;;20316:74:0;;17520:2:1;20316:74:0;;;17502:21:1;17559:2;17539:18;;;17532:30;17598:34;17578:18;;;17571:62;-1:-1:-1;;;17649:18:1;;;17642:40;17699:19;;20316:74:0;17318:406:1;20316:74:0;-1:-1:-1;;;;;;20408:16:0;;;;;:9;:16;;;;;;;20224:208::o;33541:94::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;33606:21:::1;33624:1;33606:9;:21::i;:::-;33541:94::o:0;56396:106::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;56470:10:::1;:24:::0;56396:106::o;56174:131::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;56261:16:::1;:36:::0;56174:131::o;53817:433::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;53877:14:::1;53894:24;:14;41861::::0;;41769:114;53894:24:::1;53877:41;;43841:2;53954:5;53939:12;;:20;;;;:::i;:::-;:33;53931:65;;;::::0;-1:-1:-1;;;53931:65:0;;17931:2:1;53931:65:0::1;::::0;::::1;17913:21:1::0;17970:2;17950:18;;;17943:30;-1:-1:-1;;;17989:18:1;;;17982:49;18048:18;;53931:65:0::1;17729:343:1::0;53931:65:0::1;54014:9;54009:234;54033:5;54029:1;:9;54009:234;;;54060:33;54070:10;54082;54091:1:::0;54082:6;:10:::1;:::i;54060:33::-;54123:10;54108:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54151:8:0::1;:10:::0;;;:8:::1;:10;::::0;::::1;:::i;:::-;;;;;;54176:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;54176:26:::1;54217:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;54040:3;;;;;:::i;:::-;;;;54009:234;;32890:87:::0;32963:6;;-1:-1:-1;;;;;32963:6:0;;32890:87::o;57105:84::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;57167:5:::1;:14:::0;57105:84::o;20969:104::-;21025:13;21058:7;21051:14;;;;;:::i;58424:98::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;58496:2:::1;:18:::0;;-1:-1:-1;;;;;;58496:18:0::1;-1:-1:-1::0;;;;;58496:18:0;;;::::1;::::0;;;::::1;::::0;;58424:98::o;50685:927::-;45737:18;;:23;;;;:63;;;45782:18;;45764:15;:36;45737:63;45729:120;;;;-1:-1:-1;;;45729:120:0;;;;;;;:::i;:::-;50761:14:::1;50778:24;:14;41861::::0;;41769:114;50778:24:::1;50761:41;;50837:1;50821:13;:17;:39;;;;;50858:2;50842:13;:18;50821:39;50813:75;;;;-1:-1:-1::0;;;50813:75:0::1;;;;;;;:::i;:::-;50924:16;;50905:15;:35;50901:307;;51025:14;;51010:12;;:29;;;;:::i;:::-;50995:11;;:45;;;;:::i;:::-;50965:25;:6:::0;50976:13;50965:10:::1;:25::i;:::-;:76;;50957:121;;;;-1:-1:-1::0;;;50957:121:0::1;;;;;;;:::i;:::-;50901:307;;;51148:11;::::0;51119:25:::1;:6:::0;51130:13;51119:10:::1;:25::i;:::-;:40;;51111:85;;;;-1:-1:-1::0;;;51111:85:0::1;;;;;;;:::i;:::-;51236:5;::::0;51264:9:::1;::::0;51236:24:::1;::::0;51246:13;51236:9:::1;:24::i;:::-;:37;51228:81;;;::::0;-1:-1:-1;;;51228:81:0;;18409:2:1;51228:81:0::1;::::0;::::1;18391:21:1::0;18448:2;18428:18;;;18421:30;18487:33;18467:18;;;18460:61;18538:18;;51228:81:0::1;18207:355:1::0;51228:81:0::1;51329:15;::::0;::::1;::::0;::::1;;;51328:16;51320:63;;;;-1:-1:-1::0;;;51320:63:0::1;;;;;;;:::i;:::-;51401:9;51396:209;51416:13;51412:1;:17;51396:209;;;51451:33;51461:10;51473;51482:1:::0;51473:6;:10:::1;:::i;51451:33::-;51514:10;51499:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;51542:8:0::1;:10:::0;;;:8:::1;:10;::::0;::::1;:::i;:::-;;;;;;51567:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;51567:26:::1;51431:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51396:209;;22652:295:::0;-1:-1:-1;;;;;22755:24:0;;15641:10;22755:24;;22747:62;;;;-1:-1:-1;;;22747:62:0;;18769:2:1;22747:62:0;;;18751:21:1;18808:2;18788:18;;;18781:30;-1:-1:-1;;;18827:18:1;;;18820:55;18892:18;;22747:62:0;18567:349:1;22747:62:0;15641:10;22822:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22822:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22822:53:0;;;;;;;;;;22891:48;;722:41:1;;;22822:42:0;;15641:10;22891:48;;695:18:1;22891:48:0;;;;;;;22652:295;;:::o;55929:134::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;56015:18:::1;:40:::0;55929:134::o;48957:817::-;45737:18;;:23;;;;:63;;;45782:18;;45764:15;:36;45737:63;45729:120;;;;-1:-1:-1;;;45729:120:0;;;;;;;:::i;:::-;46038:16:::1;;46020:15;:34;46012:77;;;;-1:-1:-1::0;;;46012:77:0::1;;;;;;;:::i;:::-;49038:14:::2;49055:24;:14;41861::::0;;41769:114;49055:24:::2;49114:10;::::0;:36:::2;::::0;-1:-1:-1;;;49114:36:0;;49038:41;;-1:-1:-1;49090:21:0::2;::::0;-1:-1:-1;;;;;49114:10:0;;::::2;::::0;:24:::2;::::0;:36:::2;::::0;49139:10:::2;::::0;49114:36:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;::::0;;::::2;-1:-1:-1::0;;49114:36:0::2;::::0;::::2;;::::0;::::2;::::0;;;::::2;::::0;::::2;:::i;:::-;49090:60;;49181:11;;49171:6;:21;;49163:70;;;;-1:-1:-1::0;;;49163:70:0::2;;;;;;;:::i;:::-;49268:12;::::0;49253:10:::2;:6:::0;49262:1:::2;49253:10;:::i;:::-;49252:28;;49244:78;;;;-1:-1:-1::0;;;49244:78:0::2;;;;;;;:::i;:::-;49354:10;49341:24;::::0;;;:12:::2;:24:::0;;;;;;49368:1:::2;-1:-1:-1::0;49333:81:0::2;;;;-1:-1:-1::0;;;49333:81:0::2;;;;;;;:::i;:::-;49448:1;49433:4;:11;:16;;49425:58;;;::::0;-1:-1:-1;;;49425:58:0;;20009:2:1;49425:58:0::2;::::0;::::2;19991:21:1::0;20048:2;20028:18;;;20021:30;20087:31;20067:18;;;20060:59;20136:18;;49425:58:0::2;19807:353:1::0;49425:58:0::2;49503:15;::::0;::::2;::::0;::::2;;;49502:16;49494:63;;;;-1:-1:-1::0;;;49494:63:0::2;;;;;;;:::i;:::-;49570:29;49580:10;49592:6;49570:9;:29::i;:::-;49610:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;49610:26:::2;49662:10;49649:24;::::0;;;:12:::2;:24:::0;;;;;;;49676:1:::2;49649:28:::0;;49688:14:::2;:26:::0;;;;;:28;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;49727:8:0::2;:10:::0;;;:8:::2;:10;::::0;::::2;:::i;:::-;;;;;;49765:1;49748:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;48957:817:0:o;49903:685::-;45737:18;;:23;;;;:63;;;45782:18;;45764:15;:36;45737:63;45729:120;;;;-1:-1:-1;;;45729:120:0;;;;;;;:::i;:::-;46038:16:::1;;46020:15;:34;46012:77;;;;-1:-1:-1::0;;;46012:77:0::1;;;;;;;:::i;:::-;49987:14:::2;50004:24;:14;41861::::0;;41769:114;50004:24:::2;49987:41;;50059:11;;50049:6;:21;;50041:70;;;;-1:-1:-1::0;;;50041:70:0::2;;;;;;;:::i;:::-;50146:14;::::0;50131:10:::2;:6:::0;50140:1:::2;50131:10;:::i;:::-;50130:30;;50122:75;;;::::0;-1:-1:-1;;;50122:75:0;;20367:2:1;50122:75:0::2;::::0;::::2;20349:21:1::0;;;20386:18;;;20379:30;20445:34;20425:18;;;20418:62;20497:18;;50122:75:0::2;20165:356:1::0;50122:75:0::2;50233:10;50216:28;::::0;;;:16:::2;:28;::::0;;;;;50248:1:::2;-1:-1:-1::0;50216:33:0::2;50208:81;;;::::0;-1:-1:-1;;;50208:81:0;;20728:2:1;50208:81:0::2;::::0;::::2;20710:21:1::0;20767:2;20747:18;;;20740:30;20806:34;20786:18;;;20779:62;-1:-1:-1;;;20857:18:1;;;20850:33;20900:19;;50208:81:0::2;20526:399:1::0;50208:81:0::2;50309:15;::::0;::::2;::::0;::::2;;;50308:16;50300:63;;;;-1:-1:-1::0;;;50300:63:0::2;;;;;;;:::i;:::-;50376:29;50386:10;50398:6;50376:9;:29::i;:::-;50416:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;50416:26:::2;50472:10;50486:1;50455:28:::0;;;:16:::2;:28;::::0;;;;;;;:32;;;50498:14:::2;:26:::0;;;;;:28;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;50537:8:0::2;:10:::0;;;:8:::2;:10;::::0;::::2;:::i;:::-;;;;;;50579:1;50558:17;;:22;;;;;;;:::i;59810:438::-:0;46278:16;;;;46270:58;;;;-1:-1:-1;;;46270:58:0;;;;;;;:::i;:::-;59945:2:::1;::::0;:26:::1;::::0;-1:-1:-1;;;59945:26:0;;-1:-1:-1;;;;;11767:15:1;;;59945:26:0::1;::::0;::::1;11749:34:1::0;11819:15;;;11799:18;;;11792:43;59945:2:0;;::::1;::::0;:16:::1;::::0;11684:18:1;;59945:26:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;59999:11;;59988:7;:22;59984:196;;-1:-1:-1::0;;;;;60027:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;60061:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;:::-;;;;;;59984:196;;;-1:-1:-1::0;;;;;60111:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;60148:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;;;;;;59984:196;60192:48;60216:4;60222:2;60226:7;60235:4;60192:23;:48::i;:::-;59810:438:::0;;;;:::o;57587:96::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;57655:9:::1;:20:::0;;-1:-1:-1;;;;;;57655:20:0::1;-1:-1:-1::0;;;;;57655:20:0;;;::::1;::::0;;;::::1;::::0;;57587:96::o;46576:145::-;46679:10;;:34;;-1:-1:-1;;;46679:34:0;;46643:16;;-1:-1:-1;;;;;46679:10:0;;:24;;:34;;46704:8;;46679:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46679:34:0;;;;;;;;;;;;:::i;21144:334::-;21217:13;21251:16;21259:7;21251;:16::i;:::-;21243:76;;;;-1:-1:-1;;;21243:76:0;;21132:2:1;21243:76:0;;;21114:21:1;21171:2;21151:18;;;21144:30;21210:34;21190:18;;;21183:62;-1:-1:-1;;;21261:18:1;;;21254:45;21316:19;;21243:76:0;20930:411:1;21243:76:0;21332:21;21356:10;:8;:10::i;:::-;21332:34;;21408:1;21390:7;21384:21;:25;:86;;;;;;;;;;;;;;;;;21436:7;21445:18;:7;:16;:18::i;:::-;21419:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21377:93;21144:334;-1:-1:-1;;;21144:334:0:o;52858:883::-;52925:7;45520:10;45500:16;52925:7;45500;:16::i;:::-;-1:-1:-1;;;;;45500:30:0;;45492:91;;;;-1:-1:-1;;;45492:91:0;;;;;;;:::i;:::-;52945:7;45520:10:::1;45500:16;52945:7:::0;45500::::1;:16::i;:::-;-1:-1:-1::0;;;;;45500:30:0::1;;45492:91;;;;-1:-1:-1::0;;;45492:91:0::1;;;;;;;:::i;:::-;52965:14:::2;52982:24;:14;41861::::0;;41769:114;52982:24:::2;53027:15;::::0;52965:41;;-1:-1:-1;53027:15:0::2;::::0;::::2;;;53019:55;;;::::0;-1:-1:-1;;;53019:55:0;;22440:2:1;53019:55:0::2;::::0;::::2;22422:21:1::0;22479:2;22459:18;;;22452:30;22518:29;22498:18;;;22491:57;22565:18;;53019:55:0::2;22238:351:1::0;53019:55:0::2;53102:9;;53093:6;:18;53085:64;;;::::0;-1:-1:-1;;;53085:64:0;;22796:2:1;53085:64:0::2;::::0;::::2;22778:21:1::0;22835:2;22815:18;;;22808:30;22874:34;22854:18;;;22847:62;-1:-1:-1;;;22925:18:1;;;22918:31;22966:19;;53085:64:0::2;22594:397:1::0;53085:64:0::2;53178:8;;53168:7;:18;:40;;;;;53200:8;;53190:7;:18;53168:40;53160:99;;;::::0;-1:-1:-1;;;53160:99:0;;23198:2:1;53160:99:0::2;::::0;::::2;23180:21:1::0;23237:2;23217:18;;;23210:30;23276:34;23256:18;;;23249:62;-1:-1:-1;;;23327:18:1;;;23320:44;23381:19;;53160:99:0::2;22996:410:1::0;53160:99:0::2;53289:7;53278;:18;;53270:61;;;::::0;-1:-1:-1;;;53270:61:0;;23613:2:1;53270:61:0::2;::::0;::::2;23595:21:1::0;23652:2;23632:18;;;23625:30;23691:32;23671:18;;;23664:60;23741:18;;53270:61:0::2;23411:354:1::0;53270:61:0::2;53395:2;::::0;53447:9:::2;::::0;53428:16:::2;::::0;-1:-1:-1;;;;;53395:2:0;;::::2;::::0;:7:::2;::::0;53403:10:::2;::::0;53428:28:::2;::::0;53447:9;53428:28:::2;:::i;:::-;53415:10;;:41;;;;:::i;:::-;53395:62;::::0;-1:-1:-1;;;;;;53395:62:0::2;::::0;;;;;;-1:-1:-1;;;;;24135:32:1;;;53395:62:0::2;::::0;::::2;24117:51:1::0;24184:18;;;24177:34;24090:18;;53395:62:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;53528:9:0::2;:11:::0;;;-1:-1:-1;53528:9:0;-1:-1:-1;53528:9:0::2;:11;::::0;::::2;:::i;:::-;;;;;;53550:26;:14;41980:19:::0;;41998:1;41980:19;;;41891:127;53550:26:::2;53668:29;53678:10;53690:6;53668:9;:29::i;:::-;53720:10;53708:23;::::0;;;:11:::2;:23;::::0;;;;:25;;;::::2;::::0;::::2;:::i;:::-;;;;;;52954:787;45594:1:::1;52858:883:::0;;;:::o;57329:96::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;57397:8:::1;:20:::0;57329:96::o;58628:115::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;58701:10:::1;:34:::0;;-1:-1:-1;;;;;;58701:34:0::1;-1:-1:-1::0;;;;;58701:34:0;;;::::1;::::0;;;::::1;::::0;;58628:115::o;56633:132::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;56721:16:::1;:36:::0;56633:132::o;23018:164::-;-1:-1:-1;;;;;23139:25:0;;;23115:4;23139:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23018:164::o;33790:192::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33879:22:0;::::1;33871:73;;;::::0;-1:-1:-1;;;33871:73:0;;24424:2:1;33871:73:0::1;::::0;::::1;24406:21:1::0;24463:2;24443:18;;;24436:30;24502:34;24482:18;;;24475:62;-1:-1:-1;;;24553:18:1;;;24546:36;24599:19;;33871:73:0::1;24222:402:1::0;33871:73:0::1;33955:19;33965:8;33955:9;:19::i;:::-;33790:192:::0;:::o;56891:99::-;15641:10;33110:7;:5;:7::i;:::-;-1:-1:-1;;;;;33110:23:0;;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;56958:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;56958:24:0;;::::1;::::0;;;::::1;::::0;;56891:99::o;25753:127::-;25818:4;25842:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25842:16:0;:30;;;25753:127::o;29735:174::-;29810:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29810:29:0;-1:-1:-1;;;;;29810:29:0;;;;;;;;:24;;29864:23;29810:24;29864:14;:23::i;:::-;-1:-1:-1;;;;;29855:46:0;;;;;;;;;;;29735:174;;:::o;23249:339::-;23444:41;15641:10;23477:7;23444:18;:41::i;:::-;23436:103;;;;-1:-1:-1;;;23436:103:0;;;;;;;:::i;:::-;23552:28;23562:4;23568:2;23572:7;23552:9;:28::i;36871:98::-;36929:7;36956:5;36960:1;36956;:5;:::i;37609:98::-;37667:7;37694:5;37698:1;37694;:5;:::i;26737:110::-;26813:26;26823:2;26827:7;26813:26;;;;;;;;;;;;:9;:26::i;33990:173::-;34065:6;;;-1:-1:-1;;;;;34082:17:0;;;-1:-1:-1;;;;;;34082:17:0;;;;;;;34115:40;;34065:6;;;34082:17;34065:6;;34115:40;;34046:16;;34115:40;34035:128;33990:173;:::o;23915:328::-;24090:41;15641:10;24123:7;24090:18;:41::i;:::-;24082:103;;;;-1:-1:-1;;;24082:103:0;;;;;;;:::i;:::-;24196:39;24210:4;24216:2;24220:7;24229:5;24196:13;:39::i;57990:100::-;58042:13;58075:7;58068:14;;;;;:::i;16003:723::-;16059:13;16280:10;16276:53;;-1:-1:-1;;16307:10:0;;;;;;;;;;;;-1:-1:-1;;;16307:10:0;;;;;16003:723::o;16276:53::-;16354:5;16339:12;16395:78;16402:9;;16395:78;;16428:8;;;;:::i;:::-;;-1:-1:-1;16451:10:0;;-1:-1:-1;16459:2:0;16451:10;;:::i;:::-;;;16395:78;;;16483:19;16515:6;-1:-1:-1;;;;;16505:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16505:17:0;;16483:39;;16533:154;16540:10;;16533:154;;16567:11;16577:1;16567:11;;:::i;:::-;;-1:-1:-1;16636:10:0;16644:2;16636:5;:10;:::i;:::-;16623:24;;:2;:24;:::i;:::-;16610:39;;16593:6;16600;16593:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16593:56:0;;;;;;;;-1:-1:-1;16664:11:0;16673:2;16664:11;;:::i;:::-;;;16533:154;;;16711:6;16003:723;-1:-1:-1;;;;16003:723:0:o;26047:348::-;26140:4;26165:16;26173:7;26165;:16::i;:::-;26157:73;;;;-1:-1:-1;;;26157:73:0;;25623:2:1;26157:73:0;;;25605:21:1;25662:2;25642:18;;;25635:30;25701:34;25681:18;;;25674:62;-1:-1:-1;;;25752:18:1;;;25745:42;25804:19;;26157:73:0;25421:408:1;26157:73:0;26241:13;26257:23;26272:7;26257:14;:23::i;:::-;26241:39;;26310:5;-1:-1:-1;;;;;26299:16:0;:7;-1:-1:-1;;;;;26299:16:0;;:51;;;;26343:7;-1:-1:-1;;;;;26319:31:0;:20;26331:7;26319:11;:20::i;:::-;-1:-1:-1;;;;;26319:31:0;;26299:51;:87;;;;26354:32;26371:5;26378:7;26354:16;:32::i;29039:578::-;29198:4;-1:-1:-1;;;;;29171:31:0;:23;29186:7;29171:14;:23::i;:::-;-1:-1:-1;;;;;29171:31:0;;29163:85;;;;-1:-1:-1;;;29163:85:0;;26036:2:1;29163:85:0;;;26018:21:1;26075:2;26055:18;;;26048:30;26114:34;26094:18;;;26087:62;-1:-1:-1;;;26165:18:1;;;26158:39;26214:19;;29163:85:0;25834:405:1;29163:85:0;-1:-1:-1;;;;;29267:16:0;;29259:65;;;;-1:-1:-1;;;29259:65:0;;26446:2:1;29259:65:0;;;26428:21:1;26485:2;26465:18;;;26458:30;26524:34;26504:18;;;26497:62;-1:-1:-1;;;26575:18:1;;;26568:34;26619:19;;29259:65:0;26244:400:1;29259:65:0;29441:29;29458:1;29462:7;29441:8;:29::i;:::-;-1:-1:-1;;;;;29483:15:0;;;;;;:9;:15;;;;;:20;;29502:1;;29483:15;:20;;29502:1;;29483:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29514:13:0;;;;;;:9;:13;;;;;:18;;29531:1;;29514:13;:18;;29531:1;;29514:18;:::i;:::-;;;;-1:-1:-1;;29543:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29543:21:0;-1:-1:-1;;;;;29543:21:0;;;;;;;;;29582:27;;29543:16;;29582:27;;;;;;;29039:578;;;:::o;27074:321::-;27204:18;27210:2;27214:7;27204:5;:18::i;:::-;27255:54;27286:1;27290:2;27294:7;27303:5;27255:22;:54::i;:::-;27233:154;;;;-1:-1:-1;;;27233:154:0;;;;;;;:::i;25125:315::-;25282:28;25292:4;25298:2;25302:7;25282:9;:28::i;:::-;25329:48;25352:4;25358:2;25362:7;25371:5;25329:22;:48::i;:::-;25321:111;;;;-1:-1:-1;;;25321:111:0;;;;;;;:::i;27731:382::-;-1:-1:-1;;;;;27811:16:0;;27803:61;;;;-1:-1:-1;;;27803:61:0;;27270:2:1;27803:61:0;;;27252:21:1;;;27289:18;;;27282:30;27348:34;27328:18;;;27321:62;27400:18;;27803:61:0;27068:356:1;27803:61:0;27884:16;27892:7;27884;:16::i;:::-;27883:17;27875:58;;;;-1:-1:-1;;;27875:58:0;;27631:2:1;27875:58:0;;;27613:21:1;27670:2;27650:18;;;27643:30;27709;27689:18;;;27682:58;27757:18;;27875:58:0;27429:352:1;27875:58:0;-1:-1:-1;;;;;28004:13:0;;;;;;:9;:13;;;;;:18;;28021:1;;28004:13;:18;;28021:1;;28004:18;:::i;:::-;;;;-1:-1:-1;;28033:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28033:21:0;-1:-1:-1;;;;;28033:21:0;;;;;;;;28072:33;;28033:16;;;28072:33;;28033:16;;28072:33;27731:382;;:::o;30474:799::-;30629:4;-1:-1:-1;;;;;30650:13:0;;8011:20;8059:8;30646:620;;30686:72;;-1:-1:-1;;;30686:72:0;;-1:-1:-1;;;;;30686:36:0;;;;;:72;;15641:10;;30737:4;;30743:7;;30752:5;;30686:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30686:72:0;;;;;;;;-1:-1:-1;;30686:72:0;;;;;;;;;;;;:::i;:::-;;;30682:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30928:13:0;;30924:272;;30971:60;;-1:-1:-1;;;30971:60:0;;;;;;;:::i;30924:272::-;31146:6;31140:13;31131:6;31127:2;31123:15;31116:38;30682:529;-1:-1:-1;;;;;;30809:51:0;-1:-1:-1;;;30809:51:0;;-1:-1:-1;30802:58:0;;30646:620;-1:-1:-1;31250:4:0;30474:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1710:203::-;-1:-1:-1;;;;;1874:32:1;;;;1856:51;;1844:2;1829:18;;1710:203::o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:186::-;2155:6;2208:2;2196:9;2187:7;2183:23;2179:32;2176:52;;;2224:1;2221;2214:12;2176:52;2247:29;2266:9;2247:29;:::i;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3100:632::-;3271:2;3323:21;;;3393:13;;3296:18;;;3415:22;;;3242:4;;3271:2;3494:15;;;;3468:2;3453:18;;;3242:4;3537:169;3551:6;3548:1;3545:13;3537:169;;;3612:13;;3600:26;;3681:15;;;;3646:12;;;;3573:1;3566:9;3537:169;;;-1:-1:-1;3723:3:1;;3100:632;-1:-1:-1;;;;;;3100:632:1:o;3737:127::-;3798:10;3793:3;3789:20;3786:1;3779:31;3829:4;3826:1;3819:15;3853:4;3850:1;3843:15;3869:275;3940:2;3934:9;4005:2;3986:13;;-1:-1:-1;;3982:27:1;3970:40;;-1:-1:-1;;;;;4025:34:1;;4061:22;;;4022:62;4019:88;;;4087:18;;:::i;:::-;4123:2;4116:22;3869:275;;-1:-1:-1;3869:275:1:o;4149:183::-;4209:4;-1:-1:-1;;;;;4234:6:1;4231:30;4228:56;;;4264:18;;:::i;:::-;-1:-1:-1;4309:1:1;4305:14;4321:4;4301:25;;4149:183::o;4337:891::-;4421:6;4452:2;4495;4483:9;4474:7;4470:23;4466:32;4463:52;;;4511:1;4508;4501:12;4463:52;4551:9;4538:23;-1:-1:-1;;;;;4576:6:1;4573:30;4570:50;;;4616:1;4613;4606:12;4570:50;4639:22;;4692:4;4684:13;;4680:27;-1:-1:-1;4670:55:1;;4721:1;4718;4711:12;4670:55;4757:2;4744:16;4780:60;4796:43;4836:2;4796:43;:::i;:::-;4780:60;:::i;:::-;4874:15;;;4956:1;4952:10;;;;4944:19;;4940:28;;;4905:12;;;;4980:19;;;4977:39;;;5012:1;5009;5002:12;4977:39;5036:11;;;;5056:142;5072:6;5067:3;5064:15;5056:142;;;5138:17;;5126:30;;5089:12;;;;5176;;;;5056:142;;;5217:5;4337:891;-1:-1:-1;;;;;;;4337:891:1:o;5233:407::-;5298:5;-1:-1:-1;;;;;5324:6:1;5321:30;5318:56;;;5354:18;;:::i;:::-;5392:57;5437:2;5416:15;;-1:-1:-1;;5412:29:1;5443:4;5408:40;5392:57;:::i;:::-;5383:66;;5472:6;5465:5;5458:21;5512:3;5503:6;5498:3;5494:16;5491:25;5488:45;;;5529:1;5526;5519:12;5488:45;5578:6;5573:3;5566:4;5559:5;5555:16;5542:43;5632:1;5625:4;5616:6;5609:5;5605:18;5601:29;5594:40;5233:407;;;;;:::o;5645:451::-;5714:6;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5823:9;5810:23;-1:-1:-1;;;;;5848:6:1;5845:30;5842:50;;;5888:1;5885;5878:12;5842:50;5911:22;;5964:4;5956:13;;5952:27;-1:-1:-1;5942:55:1;;5993:1;5990;5983:12;5942:55;6016:74;6082:7;6077:2;6064:16;6059:2;6055;6051:11;6016:74;:::i;6101:615::-;6187:6;6195;6248:2;6236:9;6227:7;6223:23;6219:32;6216:52;;;6264:1;6261;6254:12;6216:52;6304:9;6291:23;-1:-1:-1;;;;;6374:2:1;6366:6;6363:14;6360:34;;;6390:1;6387;6380:12;6360:34;6428:6;6417:9;6413:22;6403:32;;6473:7;6466:4;6462:2;6458:13;6454:27;6444:55;;6495:1;6492;6485:12;6444:55;6535:2;6522:16;6561:2;6553:6;6550:14;6547:34;;;6577:1;6574;6567:12;6547:34;6630:7;6625:2;6615:6;6612:1;6608:14;6604:2;6600:23;6596:32;6593:45;6590:65;;;6651:1;6648;6641:12;6590:65;6682:2;6674:11;;;;;6704:6;;-1:-1:-1;6101:615:1;;-1:-1:-1;;;;6101:615:1:o;7169:160::-;7234:20;;7290:13;;7283:21;7273:32;;7263:60;;7319:1;7316;7309:12;7334:254;7399:6;7407;7460:2;7448:9;7439:7;7435:23;7431:32;7428:52;;;7476:1;7473;7466:12;7428:52;7499:29;7518:9;7499:29;:::i;:::-;7489:39;;7547:35;7578:2;7567:9;7563:18;7547:35;:::i;:::-;7537:45;;7334:254;;;;;:::o;7593:667::-;7688:6;7696;7704;7712;7765:3;7753:9;7744:7;7740:23;7736:33;7733:53;;;7782:1;7779;7772:12;7733:53;7805:29;7824:9;7805:29;:::i;:::-;7795:39;;7853:38;7887:2;7876:9;7872:18;7853:38;:::i;:::-;7843:48;;7938:2;7927:9;7923:18;7910:32;7900:42;;7993:2;7982:9;7978:18;7965:32;-1:-1:-1;;;;;8012:6:1;8009:30;8006:50;;;8052:1;8049;8042:12;8006:50;8075:22;;8128:4;8120:13;;8116:27;-1:-1:-1;8106:55:1;;8157:1;8154;8147:12;8106:55;8180:74;8246:7;8241:2;8228:16;8223:2;8219;8215:11;8180:74;:::i;:::-;8170:84;;;7593:667;;;;;;;:::o;8490:248::-;8558:6;8566;8619:2;8607:9;8598:7;8594:23;8590:32;8587:52;;;8635:1;8632;8625:12;8587:52;-1:-1:-1;;8658:23:1;;;8728:2;8713:18;;;8700:32;;-1:-1:-1;8490:248:1:o;8743:260::-;8811:6;8819;8872:2;8860:9;8851:7;8847:23;8843:32;8840:52;;;8888:1;8885;8878:12;8840:52;8911:29;8930:9;8911:29;:::i;:::-;8901:39;;8959:38;8993:2;8982:9;8978:18;8959:38;:::i;9008:180::-;9064:6;9117:2;9105:9;9096:7;9092:23;9088:32;9085:52;;;9133:1;9130;9123:12;9085:52;9156:26;9172:9;9156:26;:::i;9193:380::-;9272:1;9268:12;;;;9315;;;9336:61;;9390:4;9382:6;9378:17;9368:27;;9336:61;9443:2;9435:6;9432:14;9412:18;9409:38;9406:161;;;9489:10;9484:3;9480:20;9477:1;9470:31;9524:4;9521:1;9514:15;9552:4;9549:1;9542:15;9406:161;;9193:380;;;:::o;10818:356::-;11020:2;11002:21;;;11039:18;;;11032:30;11098:34;11093:2;11078:18;;11071:62;11165:2;11150:18;;10818:356::o;11179:353::-;11381:2;11363:21;;;11420:2;11400:18;;;11393:30;11459:31;11454:2;11439:18;;11432:59;11523:2;11508:18;;11179:353::o;11846:127::-;11907:10;11902:3;11898:20;11895:1;11888:31;11938:4;11935:1;11928:15;11962:4;11959:1;11952:15;11978:136;12017:3;12045:5;12035:39;;12054:18;;:::i;:::-;-1:-1:-1;;;12090:18:1;;11978:136::o;12119:135::-;12158:3;-1:-1:-1;;12179:17:1;;12176:43;;;12199:18;;:::i;:::-;-1:-1:-1;12246:1:1;12235:13;;12119:135::o;12259:127::-;12320:10;12315:3;12311:20;12308:1;12301:31;12351:4;12348:1;12341:15;12375:4;12372:1;12365:15;12391:184;12461:6;12514:2;12502:9;12493:7;12489:23;12485:32;12482:52;;;12530:1;12527;12520:12;12482:52;-1:-1:-1;12553:16:1;;12391:184;-1:-1:-1;12391:184:1:o;12580:408::-;12782:2;12764:21;;;12821:2;12801:18;;;12794:30;12860:34;12855:2;12840:18;;12833:62;-1:-1:-1;;;12926:2:1;12911:18;;12904:42;12978:3;12963:19;;12580:408::o;12993:347::-;13195:2;13177:21;;;13234:2;13214:18;;;13207:30;-1:-1:-1;;;13268:2:1;13253:18;;13246:53;13331:2;13316:18;;12993:347::o;13345:356::-;13547:2;13529:21;;;13566:18;;;13559:30;13625:34;13620:2;13605:18;;13598:62;13692:2;13677:18;;13345:356::o;14058:398::-;14260:2;14242:21;;;14299:2;14279:18;;;14272:30;14338:34;14333:2;14318:18;;14311:62;-1:-1:-1;;;14404:2:1;14389:18;;14382:32;14446:3;14431:19;;14058:398::o;14841:128::-;14881:3;14912:1;14908:6;14905:1;14902:13;14899:39;;;14918:18;;:::i;:::-;-1:-1:-1;14954:9:1;;14841:128::o;14974:354::-;15176:2;15158:21;;;15215:2;15195:18;;;15188:30;15254:32;15249:2;15234:18;;15227:60;15319:2;15304:18;;14974:354::o;15333:400::-;15535:2;15517:21;;;15574:2;15554:18;;;15547:30;15613:34;15608:2;15593:18;;15586:62;-1:-1:-1;;;15679:2:1;15664:18;;15657:34;15723:3;15708:19;;15333:400::o;16093:401::-;16295:2;16277:21;;;16334:2;16314:18;;;16307:30;16373:34;16368:2;16353:18;;16346:62;-1:-1:-1;;;16439:2:1;16424:18;;16417:35;16484:3;16469:19;;16093:401::o;16499:404::-;16701:2;16683:21;;;16740:2;16720:18;;;16713:30;16779:34;16774:2;16759:18;;16752:62;-1:-1:-1;;;16845:2:1;16830:18;;16823:38;16893:3;16878:19;;16499:404::o;18077:125::-;18117:4;18145:1;18142;18139:8;18136:34;;;18150:18;;:::i;:::-;-1:-1:-1;18187:9:1;;18077:125::o;18921:881::-;19016:6;19047:2;19090;19078:9;19069:7;19065:23;19061:32;19058:52;;;19106:1;19103;19096:12;19058:52;19139:9;19133:16;-1:-1:-1;;;;;19164:6:1;19161:30;19158:50;;;19204:1;19201;19194:12;19158:50;19227:22;;19280:4;19272:13;;19268:27;-1:-1:-1;19258:55:1;;19309:1;19306;19299:12;19258:55;19338:2;19332:9;19361:60;19377:43;19417:2;19377:43;:::i;19361:60::-;19455:15;;;19537:1;19533:10;;;;19525:19;;19521:28;;;19486:12;;;;19561:19;;;19558:39;;;19593:1;19590;19583:12;19558:39;19617:11;;;;19637:135;19653:6;19648:3;19645:15;19637:135;;;19719:10;;19707:23;;19670:12;;;;19750;;;;19637:135;;21346:470;21525:3;21563:6;21557:13;21579:53;21625:6;21620:3;21613:4;21605:6;21601:17;21579:53;:::i;:::-;21695:13;;21654:16;;;;21717:57;21695:13;21654:16;21751:4;21739:17;;21717:57;:::i;:::-;21790:20;;21346:470;-1:-1:-1;;;;21346:470:1:o;21821:412::-;22023:2;22005:21;;;22062:2;22042:18;;;22035:30;22101:34;22096:2;22081:18;;22074:62;-1:-1:-1;;;22167:2:1;22152:18;;22145:46;22223:3;22208:19;;21821:412::o;23770:168::-;23810:7;23876:1;23872;23868:6;23864:14;23861:1;23858:21;23853:1;23846:9;23839:17;23835:45;23832:71;;;23883:18;;:::i;:::-;-1:-1:-1;23923:9:1;;23770:168::o;24629:413::-;24831:2;24813:21;;;24870:2;24850:18;;;24843:30;24909:34;24904:2;24889:18;;24882:62;-1:-1:-1;;;24975:2:1;24960:18;;24953:47;25032:3;25017:19;;24629:413::o;25047:127::-;25108:10;25103:3;25099:20;25096:1;25089:31;25139:4;25136:1;25129:15;25163:4;25160:1;25153:15;25179:120;25219:1;25245;25235:35;;25250:18;;:::i;:::-;-1:-1:-1;25284:9:1;;25179:120::o;25304:112::-;25336:1;25362;25352:35;;25367:18;;:::i;:::-;-1:-1:-1;25401:9:1;;25304:112::o;26649:414::-;26851:2;26833:21;;;26890:2;26870:18;;;26863:30;26929:34;26924:2;26909:18;;26902:62;-1:-1:-1;;;26995:2:1;26980:18;;26973:48;27053:3;27038:19;;26649:414::o;27786:489::-;-1:-1:-1;;;;;28055:15:1;;;28037:34;;28107:15;;28102:2;28087:18;;28080:43;28154:2;28139:18;;28132:34;;;28202:3;28197:2;28182:18;;28175:31;;;27980:4;;28223:46;;28249:19;;28241:6;28223:46;:::i;:::-;28215:54;27786:489;-1:-1:-1;;;;;;27786:489:1:o;28280:249::-;28349:6;28402:2;28390:9;28381:7;28377:23;28373:32;28370:52;;;28418:1;28415;28408:12;28370:52;28450:9;28444:16;28469:30;28493:5;28469:30;:::i

Swarm Source

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