ETH Price: $3,395.09 (-1.38%)
Gas: 2 Gwei

Token

KinesisArt (KINESIS)
 

Overview

Max Total Supply

5,164 KINESIS

Holders

1,961

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dwreck.eth
Balance
15 KINESIS
0x0e81ab05550b87a025e2766a152b903d3fdf3439
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kinesis Art is a generative art studio focusing on exploring motion through digital art forms via the release of a series of limited, curated public mints. All artwork is 100% on-chain generated. The Kinesis Genesis series "Planar Explorations" is currently ongoing and is composed of two major works: "Atlanta" and "Kafka" - there will be a total of 5 works in the Genesis series

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Kinesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

/**
 *Submitted for verification at Etherscan.io on 2020-11-27
*/

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File contracts/libs/IERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 */
interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is 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;
        }
    }
}


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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

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

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


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// SPDX-License-Identifier: MIT
// File: contracts/Kinesis.sol
pragma solidity ^0.8.0;

contract Kinesis is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;

    event Mint(
        address indexed _to,
        uint256 indexed _tokenId,
        uint256 indexed _projectId,
        uint256 _invocations,
        uint256 _value
    );

    event Burn(
        address indexed _burnerAddress,
        uint256 indexed _tokenId,
        uint256 indexed _projectId
    );

    struct Project {
        string name;
        string artist;
        string description;
        string website;
        string license;
        address payable artistAddress;
        address payable additionalPayee;
        uint256 additionalPayeePercentage;
        uint256 secondMarketRoyalty;
        uint256 pricePerTokenInWei;
        string projectBaseURI;
        uint256 invocations;
        uint256 maxInvocations;
        mapping(uint256 => string) scripts;
        uint scriptCount;
        uint256 hashes;
        bool active;
        bool locked;
        bool paused;
        bool privateSaleIsActive;
        bool claimable;
        uint256 maxPurchaseable;
        mapping(address => bool) whiteList;
        mapping(address => uint256) whiteListPurchases;
        mapping(address => uint256) whiteListLimit;
        mapping(string => bool) usedNonces;
        mapping(uint256 => bool) isTokenClaimable;
    }

    uint256 constant ONE_MILLION = 1_000_000;
    mapping(uint256 => Project) projects;

    address payable public kinesisAddress;
    uint256 public kinesisPercentage = 10;

    address public _signerAddress = 0x4D39A464e3d2441Dc3e95af45733D749883f0dc4;

    mapping(uint256 => uint256) public tokenIdToProjectId;
    mapping(uint256 => uint256[]) internal projectIdToTokenIds;
    mapping(uint256 => bytes32[]) internal tokenIdToHashes;
    mapping(bytes32 => uint256) public hashToTokenId;
    mapping(uint256 => uint256) internal tokenIdToProjectArrayIndex;

    address public admin;
    mapping(address => bool) public isAuthorized;

    uint256 public nextProjectId;

    modifier onlyValidTokenId(uint256 _tokenId) {
        require(_exists(_tokenId), "Token ID does not exist");
        _;
    }

    modifier onlyUnlocked(uint256 _projectId) {
        require(!projects[_projectId].locked, "Only if unlocked");
        _;
    }

    modifier onlyArtist(uint256 _projectId) {
        require(msg.sender == projects[_projectId].artistAddress, "Only artist");
        _;
    }

    modifier onlyAdmin() {
        require(msg.sender == admin, "Only admin");
        _;
    }

    modifier onlyAuthorized() {
        require(isAuthorized[msg.sender], "Only authorized");
        _;
    }

    modifier onlyArtistOrAuthorized(uint256 _projectId) {
        require(isAuthorized[msg.sender] || msg.sender == projects[_projectId].artistAddress, "Only artist or authorized");
        _;
    }

    constructor() ERC721("KinesisArt", "KINESIS") {
        admin = msg.sender;
        isAuthorized[msg.sender] = true;
        kinesisAddress = payable(msg.sender);
    }

    function addAllProjectTokensToClaimable(uint256 _projectId, uint256 _oldProjectId) external onlyAuthorized {
        require(projects[_projectId].claimable, "Project is not claimable");
        for (uint256 i = 0; i < projectIdToTokenIds[_oldProjectId].length; i++) {
            projects[_projectId].isTokenClaimable[projectIdToTokenIds[_oldProjectId][i]] = true;
        }
    }

    function addTokenListToClaimable(uint256 _projectId, uint256[] calldata _tokenIdArr) external onlyAuthorized{
        require(projects[_projectId].claimable, "Project is not claimable");
        for (uint256 i = 0; i < _tokenIdArr.length; i++) {
            projects[_projectId].isTokenClaimable[_tokenIdArr[i]] = true;
        }
    }
    
    function removeTokenListFromClaimable(uint256 _projectId, uint256[] calldata _tokenIdArr) external onlyAuthorized{
        require(projects[_projectId].claimable, "Project is not claimable");
        for (uint256 i = 0; i < _tokenIdArr.length; i++) {
            projects[_projectId].isTokenClaimable[_tokenIdArr[i]] = false;
        }
    }

    function claimForToken(uint256 _projectId, uint256 _tokenId) external {
        require(!_isContract(msg.sender), "Can't claim from a contract smh");
        require(projects[_projectId].claimable, "Not a claimable project");
        require(_isApprovedOrOwner(msg.sender, _tokenId), "Caller is not owner nor approved");
        require(projects[_projectId].isTokenClaimable[_tokenId], "Token is not claimable, or has already been claimed");
        require(projects[_projectId].active || msg.sender == projects[_projectId].artistAddress, "Project must exist and be active");
        require(!projects[_projectId].paused || msg.sender == projects[_projectId].artistAddress, "Purchases are paused."); 
        
        projects[_projectId].isTokenClaimable[_tokenId] = false;
        _mintToken(msg.sender, _projectId);
    }

    function hashTransaction(address sender, uint256 _projectId, uint256 qty, string memory nonce) private pure returns(bytes32) {
          bytes32 hash = keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(sender, _projectId, qty, nonce)))
          );
          
          return hash;
    }
    
    function matchAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) {
        return _signerAddress == hash.recover(signature);
    }

    function mint(uint256 _projectId, bytes32 hash, bytes memory signature, string memory nonce, uint256 tokenQuantity) external payable {
        require(!_isContract(msg.sender), "Can't mint from a contract smh");
        require(matchAddressSigner(hash, signature), "DIRECT_MINT_DISALLOWED");
        require(!projects[_projectId].usedNonces[nonce], "HASH_USED");
        require(hashTransaction(msg.sender, _projectId, tokenQuantity, nonce) == hash, "HASH_FAIL");

        require(tokenQuantity > 0, "You must mint at least one piece.");
        require(tokenQuantity <= projects[_projectId].maxPurchaseable, "You are minting too many pieces at once!");
        require(totalSupply() + tokenQuantity <= projects[_projectId].maxInvocations, "The amount of pieces you are trying to mint exceeds the max supply.");
        
        require(projects[_projectId].active || msg.sender == projects[_projectId].artistAddress, "Project must exist and be active");
        require(!projects[_projectId].paused || msg.sender == projects[_projectId].artistAddress, "Purchases are paused.");        
        require(!projects[_projectId].claimable, "This project can only be claimed, not minted");
        require(projects[_projectId].pricePerTokenInWei * tokenQuantity <= msg.value, "Incorrect Ether value.");

        if (projects[_projectId].privateSaleIsActive) {
            require(projects[_projectId].whiteList[msg.sender], "Buyer not whitelisted for this private sale");
            require(projects[_projectId].whiteListPurchases[msg.sender].add(tokenQuantity) <= projects[_projectId].whiteListLimit[msg.sender], "Cannot exceed allotted presale mint count");
            projects[_projectId].whiteListPurchases[msg.sender] = projects[_projectId].whiteListPurchases[msg.sender].add(tokenQuantity);
        }

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _mintToken(msg.sender, _projectId);
        }
        _splitFunds(_projectId);

        projects[_projectId].usedNonces[nonce] = true;
   }

    function _mintToken(address _to, uint256 _projectId) internal returns (uint256 _tokenId) {

        uint256 tokenIdToBe = (_projectId * ONE_MILLION) + projects[_projectId].invocations;
        tokenIdToProjectArrayIndex[tokenIdToBe] = projects[_projectId].invocations;

        projects[_projectId].invocations = projects[_projectId].invocations.add(1);

        for (uint256 i = 0; i < projects[_projectId].hashes; i++) {
            bytes32 hash = keccak256(abi.encodePacked(projects[_projectId].invocations, block.number.add(i), msg.sender));
            tokenIdToHashes[tokenIdToBe].push(hash);
            hashToTokenId[hash] = tokenIdToBe;
        }

        _safeMint(_to, tokenIdToBe);

        tokenIdToProjectId[tokenIdToBe] = _projectId;
        projectIdToTokenIds[_projectId].push(tokenIdToBe);

        emit Mint(_to, tokenIdToBe, _projectId, projects[_projectId].invocations, projects[_projectId].pricePerTokenInWei);

        return tokenIdToBe;
    }

    function _splitFunds(uint256 _projectId) internal {
        if (msg.value > 0) {

            uint256 pricePerTokenInWei = projects[_projectId].pricePerTokenInWei;
            uint256 refund = msg.value.sub(projects[_projectId].pricePerTokenInWei);

            if (refund > 0) {
                payable(msg.sender).transfer(refund);
            }

            uint256 foundationAmount = pricePerTokenInWei.div(100).mul(kinesisPercentage);
            if (foundationAmount > 0) {
                kinesisAddress.transfer(foundationAmount);
            }

            uint256 projectFunds = pricePerTokenInWei.sub(foundationAmount);

            uint256 additionalPayeeAmount;
            if (projects[_projectId].additionalPayeePercentage > 0) {
                additionalPayeeAmount = projectFunds.div(100).mul(projects[_projectId].additionalPayeePercentage);
                if (additionalPayeeAmount > 0) {
                    projects[_projectId].additionalPayee.transfer(additionalPayeeAmount);
                }
            }

            uint256 creatorFunds = projectFunds.sub(additionalPayeeAmount);
            if (creatorFunds > 0) {
                projects[_projectId].artistAddress.transfer(creatorFunds);
            }
        }
    }

    function updateKinesisAddress(address payable _kinesisAddress) public onlyAdmin {
        kinesisAddress = _kinesisAddress;
    }

    function updateKinesisPercentage(uint256 _kinesisPercentage) public onlyAdmin {
        require(_kinesisPercentage <= 50, "Max of 50%");
        kinesisPercentage = _kinesisPercentage;
    }

    function addAuthorized(address _address) public onlyAdmin {
        isAuthorized[_address] = true;
    }

    function removeAuthorized(address _address) public onlyAdmin {
        isAuthorized[_address] = false;
    }

    function addToWhitelist(uint256 _projectId, uint256 _claimAmount, address[] calldata entries) onlyAuthorized external {
        for(uint i=0; i<entries.length; i++){
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!projects[_projectId].whiteList[entry], "DUPLICATE_ENTRY");
            projects[_projectId].whiteList[entry] = true;
            projects[_projectId].whiteListLimit[entry] = _claimAmount;
        }
    }

    function removeFromWhitelist(uint256 _projectId, address[] calldata entries) external onlyAuthorized {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            projects[_projectId].whiteList[entry] = false;
        }
    }

    function whitelistInfoFor(uint256 _projectId, address _addr) public view returns (bool isWhiteListed, uint256 numHasMinted, uint256 allottedMints) {
        isWhiteListed = projects[_projectId].whiteList[_addr];
        numHasMinted = projects[_projectId].whiteListPurchases[_addr];
        allottedMints = projects[_projectId].whiteListLimit[_addr];
    }
    
    function toggleProjectIsLocked(uint256 _projectId) public onlyAuthorized onlyUnlocked(_projectId) {
        projects[_projectId].locked = true;
    }

    function toggleProjectIsActive(uint256 _projectId) public onlyAuthorized {
        projects[_projectId].active = !projects[_projectId].active;
    }

    function updateProjectArtistAddress(uint256 _projectId, address payable _artistAddress) public onlyArtistOrAuthorized(_projectId) {
        projects[_projectId].artistAddress = _artistAddress;
    }

    function toggleProjectIsPaused(uint256 _projectId) public onlyArtistOrAuthorized(_projectId) {
        projects[_projectId].paused = !projects[_projectId].paused;
    }

    function toggleProjectIsPrivateSale(uint256 _projectId) public onlyArtistOrAuthorized(_projectId) {
        projects[_projectId].privateSaleIsActive = !projects[_projectId].privateSaleIsActive;
    }

    function toggleProjectIsClaimable(uint256 _projectId) public onlyArtistOrAuthorized(_projectId) {
        projects[_projectId].claimable = !projects[_projectId].claimable;
    }

    function addProject(uint256 _pricePerTokenInWei, uint256 _mintVolume, string memory _name, string memory _description, string memory _artistName, string memory _artistWebsite, uint256 _txnLimit, bool _claimable) public onlyAuthorized {

        uint256 projectId = nextProjectId;
        projects[projectId].artistAddress = payable(msg.sender);
        projects[projectId].pricePerTokenInWei = _pricePerTokenInWei;
        projects[projectId].paused=true;
        projects[projectId].maxInvocations = _mintVolume;
        projects[projectId].name = _name;
        projects[projectId].description = _description;
        projects[projectId].artist = _artistName;
        projects[projectId].website = _artistWebsite;
        projects[projectId].maxPurchaseable = _txnLimit;
        projects[projectId].hashes = 1;
        projects[projectId].claimable = _claimable;
        nextProjectId = nextProjectId.add(1);
    }

    function updateProjectPricePerTokenInWei(uint256 _projectId, uint256 _pricePerTokenInWei) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].pricePerTokenInWei = _pricePerTokenInWei;
    }

    function updateProjectName(uint256 _projectId, string memory _projectName) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].name = _projectName;
    }

    function updateProjectArtistName(uint256 _projectId, string memory _projectArtistName) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].artist = _projectArtistName;
    }

    function updateProjectMaxPurchaseable(uint256 _projectId, uint256 _maxPurchaseable) external onlyArtistOrAuthorized(_projectId) {
        projects[_projectId].maxPurchaseable = _maxPurchaseable;
    }

    function updateProjectAdditionalPayeeInfo(uint256 _projectId, address payable _additionalPayee, uint256 _additionalPayeePercentage) onlyArtistOrAuthorized(_projectId) external {
        require(_additionalPayeePercentage <= 100, "Max of 100%");
        projects[_projectId].additionalPayee = _additionalPayee;
        projects[_projectId].additionalPayeePercentage = _additionalPayeePercentage;
    }

    function updateProjectSecondaryMarketRoyaltyPercentage(uint256 _projectId, uint256 _secondMarketRoyalty) onlyArtistOrAuthorized(_projectId) external {
        require(_secondMarketRoyalty <= 100, "Max of 100%");
        projects[_projectId].secondMarketRoyalty = _secondMarketRoyalty;
    }

    function updateProjectDescription(uint256 _projectId, string memory _projectDescription) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].description = _projectDescription;
    }

    function updateProjectWebsite(uint256 _projectId, string memory _projectWebsite) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].website = _projectWebsite;
    }

    function updateProjectLicense(uint256 _projectId, string memory _projectLicense) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].license = _projectLicense;
    }

    function updateProjectMaxInvocations(uint256 _projectId, uint256 _maxInvocations) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        require(_maxInvocations > projects[_projectId].invocations, "You must set max invocations greater than current invocations");
        require(_maxInvocations <= ONE_MILLION, "Cannot exceed 1,000,000");
        projects[_projectId].maxInvocations = _maxInvocations;
    }

    function updateProjectHashesGenerated(uint256 _projectId, uint256 _hashes) onlyUnlocked(_projectId) onlyAuthorized() external {
        require(projects[_projectId].invocations == 0, "Can not modify hashes generated after a token is minted.");
        require(_hashes <= 100 && _hashes >= 0, "Hashes generated must be a positive integer and max hashes per invocation are 100");
        projects[_projectId].hashes = _hashes;
    }

    function addProjectScript(uint256 _projectId, string memory _script) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].scripts[projects[_projectId].scriptCount] = _script;
        projects[_projectId].scriptCount = projects[_projectId].scriptCount.add(1);
    }

    function updateProjectScript(uint256 _projectId, uint256 _scriptId, string memory _script) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        require(_scriptId < projects[_projectId].scriptCount, "scriptId out of range");
        projects[_projectId].scripts[_scriptId] = _script;
    }

    function removeProjectLastScript(uint256 _projectId) onlyUnlocked(_projectId) onlyArtistOrAuthorized(_projectId) external {
        require(projects[_projectId].scriptCount > 0, "there are no scripts to remove");
        delete projects[_projectId].scripts[projects[_projectId].scriptCount - 1];
        projects[_projectId].scriptCount = projects[_projectId].scriptCount.sub(1);
    }

    function updateProjectBaseURI(uint256 _projectId, string memory _newBaseURI) onlyArtistOrAuthorized(_projectId) external {
        projects[_projectId].projectBaseURI = _newBaseURI;
    }

    function updateSigningWallet(address addr) onlyAdmin public {
        require(addr != address(0), "NULL_ADDRESS");
        _signerAddress = addr;
    }

    function projectDetails(uint256 _projectId) view public returns (string memory projectName, string memory artist, string memory description, string memory website, string memory license) {
        projectName = projects[_projectId].name;
        artist = projects[_projectId].artist;
        description = projects[_projectId].description;
        website = projects[_projectId].website;
        license = projects[_projectId].license;
    }

    function projectTokenInfo(uint256 _projectId) view public returns (address artistAddress, uint256 pricePerTokenInWei, uint256 invocations, uint256 maxInvocations, bool active, address additionalPayee, uint256 additionalPayeePercentage, bool privateSaleActive, uint256 maxPurchaseable, bool claimable) {
        artistAddress = projects[_projectId].artistAddress;
        pricePerTokenInWei = projects[_projectId].pricePerTokenInWei;
        invocations = projects[_projectId].invocations;
        maxInvocations = projects[_projectId].maxInvocations;
        active = projects[_projectId].active;
        additionalPayee = projects[_projectId].additionalPayee;
        additionalPayeePercentage = projects[_projectId].additionalPayeePercentage;
        maxPurchaseable = projects[_projectId].maxPurchaseable;
        privateSaleActive = projects[_projectId].privateSaleIsActive;
        claimable = projects[_projectId].claimable;
    }

    function projectScriptInfo(uint256 _projectId) view public returns (uint256 scriptCount, uint256 hashes, bool locked, bool paused) {
        scriptCount = projects[_projectId].scriptCount;
        hashes = projects[_projectId].hashes;
        locked = projects[_projectId].locked;
        paused = projects[_projectId].paused;
    }

    function projectScriptByIndex(uint256 _projectId, uint256 _index) view public returns (string memory){
        return projects[_projectId].scripts[_index];
    }

    function projectURIInfo(uint256 _projectId) view public returns (string memory projectBaseURI) {
        projectBaseURI = projects[_projectId].projectBaseURI;
    }

    function projectShowAllTokens(uint _projectId) public view returns (uint256[] memory){
        return projectIdToTokenIds[_projectId];
    }

    function showTokenHashes(uint _tokenId) public view returns (bytes32[] memory){
        return tokenIdToHashes[_tokenId];
    }
    
    function isTokenClaimableForProject(uint256 _projectId, uint256 _tokenId) public view returns (bool isClaimable){
        isClaimable = projects[_projectId].isTokenClaimable[_tokenId];
    }

    function getRoyaltyData(uint256 _tokenId) public view returns (address artistAddress, address additionalPayee, uint256 additionalPayeePercentage, uint256 royaltyFeeByID) {
        artistAddress = projects[tokenIdToProjectId[_tokenId]].artistAddress;
        additionalPayee = projects[tokenIdToProjectId[_tokenId]].additionalPayee;
        additionalPayeePercentage = projects[tokenIdToProjectId[_tokenId]].additionalPayeePercentage;
        royaltyFeeByID = projects[tokenIdToProjectId[_tokenId]].secondMarketRoyalty;
    }

    function burn(uint256 _tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), _tokenId), "ERC721Burnable: caller is not owner nor approved");
        // move last element to deleted slot, then decrease array size
        uint256 proj_id = tokenIdToProjectId[_tokenId];
        uint oldIndex = tokenIdToProjectArrayIndex[_tokenId];
        projectIdToTokenIds[proj_id][oldIndex] = projectIdToTokenIds[proj_id][projectIdToTokenIds[proj_id].length - 1];
        tokenIdToProjectArrayIndex[projectIdToTokenIds[proj_id][oldIndex]] = oldIndex;
        projectIdToTokenIds[proj_id].pop();
        for (uint256 i = 0; i < tokenIdToHashes[_tokenId].length; i++) {
            delete hashToTokenId[tokenIdToHashes[_tokenId][i]];
        }
        delete tokenIdToHashes[_tokenId];
        delete tokenIdToProjectId[_tokenId];  
        _burn(_tokenId);

        emit Burn(msg.sender, _tokenId, proj_id);
    }

    function tokenURI(uint256 _tokenId) public view virtual override onlyValidTokenId(_tokenId) returns (string memory) {
        return string(abi.encodePacked(projects[tokenIdToProjectId[_tokenId]].projectBaseURI, Strings.toString(_tokenId)));
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        admin = newOwner;
        isAuthorized[newOwner] = true;
        kinesisAddress = payable(newOwner);
        super.transferOwnership(newOwner);
    }

    function _isContract(address _addr) internal view returns (bool) {
		uint32 _size;
		assembly {
			_size:= extcodesize(_addr)
		}
		return (_size > 0);
	}
}

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":"_burnerAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_projectId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_invocations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Mint","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":"_signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_oldProjectId","type":"uint256"}],"name":"addAllProjectTokensToClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerTokenInWei","type":"uint256"},{"internalType":"uint256","name":"_mintVolume","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_description","type":"string"},{"internalType":"string","name":"_artistName","type":"string"},{"internalType":"string","name":"_artistWebsite","type":"string"},{"internalType":"uint256","name":"_txnLimit","type":"uint256"},{"internalType":"bool","name":"_claimable","type":"bool"}],"name":"addProject","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"addProjectScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_claimAmount","type":"uint256"},{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256[]","name":"_tokenIdArr","type":"uint256[]"}],"name":"addTokenListToClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"claimForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyData","outputs":[{"internalType":"address","name":"artistAddress","type":"address"},{"internalType":"address","name":"additionalPayee","type":"address"},{"internalType":"uint256","name":"additionalPayeePercentage","type":"uint256"},{"internalType":"uint256","name":"royaltyFeeByID","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"hashToTokenId","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":[{"internalType":"address","name":"","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isTokenClaimableForProject","outputs":[{"internalType":"bool","name":"isClaimable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kinesisAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kinesisPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"nonce","type":"string"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextProjectId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"projectDetails","outputs":[{"internalType":"string","name":"projectName","type":"string"},{"internalType":"string","name":"artist","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"string","name":"license","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"projectScriptByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"projectScriptInfo","outputs":[{"internalType":"uint256","name":"scriptCount","type":"uint256"},{"internalType":"uint256","name":"hashes","type":"uint256"},{"internalType":"bool","name":"locked","type":"bool"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"projectShowAllTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"projectTokenInfo","outputs":[{"internalType":"address","name":"artistAddress","type":"address"},{"internalType":"uint256","name":"pricePerTokenInWei","type":"uint256"},{"internalType":"uint256","name":"invocations","type":"uint256"},{"internalType":"uint256","name":"maxInvocations","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"address","name":"additionalPayee","type":"address"},{"internalType":"uint256","name":"additionalPayeePercentage","type":"uint256"},{"internalType":"bool","name":"privateSaleActive","type":"bool"},{"internalType":"uint256","name":"maxPurchaseable","type":"uint256"},{"internalType":"bool","name":"claimable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"projectURIInfo","outputs":[{"internalType":"string","name":"projectBaseURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"removeProjectLastScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256[]","name":"_tokenIdArr","type":"uint256[]"}],"name":"removeTokenListFromClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"showTokenHashes","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"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":"_projectId","type":"uint256"}],"name":"toggleProjectIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"toggleProjectIsClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"toggleProjectIsLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"toggleProjectIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"toggleProjectIsPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToProjectId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_kinesisAddress","type":"address"}],"name":"updateKinesisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_kinesisPercentage","type":"uint256"}],"name":"updateKinesisPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address payable","name":"_additionalPayee","type":"address"},{"internalType":"uint256","name":"_additionalPayeePercentage","type":"uint256"}],"name":"updateProjectAdditionalPayeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address payable","name":"_artistAddress","type":"address"}],"name":"updateProjectArtistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_projectArtistName","type":"string"}],"name":"updateProjectArtistName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateProjectBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_projectDescription","type":"string"}],"name":"updateProjectDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_hashes","type":"uint256"}],"name":"updateProjectHashesGenerated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_projectLicense","type":"string"}],"name":"updateProjectLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"}],"name":"updateProjectMaxInvocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_maxPurchaseable","type":"uint256"}],"name":"updateProjectMaxPurchaseable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_projectName","type":"string"}],"name":"updateProjectName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_pricePerTokenInWei","type":"uint256"}],"name":"updateProjectPricePerTokenInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_scriptId","type":"uint256"},{"internalType":"string","name":"_script","type":"string"}],"name":"updateProjectScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"uint256","name":"_secondMarketRoyalty","type":"uint256"}],"name":"updateProjectSecondaryMarketRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_projectWebsite","type":"string"}],"name":"updateProjectWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateSigningWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"whitelistInfoFor","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"},{"internalType":"uint256","name":"numHasMinted","type":"uint256"},{"internalType":"uint256","name":"allottedMints","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600a600d55600e80546001600160a01b031916734d39a464e3d2441dc3e95af45733d749883f0dc41790553480156200003c57600080fd5b50604080518082018252600a81526912da5b995cda5cd05c9d60b21b6020808301918252835180850190945260078452664b494e4553495360c81b9084015281519192916200008e916000916200014c565b508051620000a49060019060208401906200014c565b5050506000620000b96200014860201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060148054336001600160a01b031991821681179092556000828152601560205260409020805460ff19166001179055600c805490911690911790556200022f565b3390565b8280546200015a90620001f2565b90600052602060002090601f0160209004810192826200017e5760008555620001c9565b82601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b50620001d7929150620001db565b5090565b5b80821115620001d75760008155600101620001dc565b600181811c908216806200020757607f821691505b602082108114156200022957634e487b7160e01b600052602260045260246000fd5b50919050565b615ef4806200023f6000396000f3fe60806040526004361061041b5760003560e01c80638ba8f14d1161021e578063b88d4fde11610123578063e13208b4116100ab578063f221c20c1161007a578063f221c20c14610ed4578063f2fde38b14610ef4578063f51f74a914610f14578063f851a44014610f41578063fe9fbb8014610f6157600080fd5b8063e13208b414610e16578063e935b7b114610e36578063e985e9c514610e4c578063ebabb02714610e9557600080fd5b8063c87b56dd116100f2578063c87b56dd14610d76578063cf1c316a14610d96578063d03c390c14610db6578063d1d0bec014610dd6578063db2ff86114610df657600080fd5b8063b88d4fde14610cf6578063bee04f9c14610d16578063c1df653814610d36578063c34a03b514610d5657600080fd5b8063a191b3fa116101a6578063aa7cc25711610175578063aa7cc25714610c56578063acad012414610c76578063b1656ba314610c96578063b7b04fae14610cb6578063b86e725514610cd657600080fd5b8063a191b3fa14610b6c578063a22cb46514610b8c578063a3b2cca614610bac578063a65ff74c14610bcc57600080fd5b80638dd91a56116101ed5780638dd91a5614610ac657806395d89b4114610af757806397dc86cf14610b0c5780639f47a5df14610b2c578063a11ec70a14610b4c57600080fd5b80638ba8f14d146109815780638c2c3622146109a15780638c3c9cdd14610a885780638da5cb5b14610aa857600080fd5b806342842e0e116103245780636352211e116102ac57806377444f621161027b57806377444f62146108e15780637ec2d2d0146109015780637ed230cc14610921578063826fc391146109415780638825c29f1461096157600080fd5b80636352211e1461086c57806369d14faf1461088c57806370a08231146108ac578063715018a6146108cc57600080fd5b80634baea25b116102f35780634baea25b1461076a5780634dea982a146107ec5780634f6ccce71461080c57806358bc29441461082c578063634cf6881461084c57600080fd5b806342842e0e1461069357806342966c68146106b3578063485d7d94146106d35780634aa6d417146106f357600080fd5b806325b75d68116103a7578063378599631161037657806337859963146106005780633ca5f677146106205780633e48e84814610640578063419ed70e14610660578063427dee381461068057600080fd5b806325b75d6814610573578063271aaab4146105935780632d9c0205146105c05780632f745c59146105e057600080fd5b80630d170673116103ee5780630d170673146104d157806318160ddd146104f15780631b689c0b146105105780631e4e7efc1461053d57806323b872dd1461055357600080fd5b806301ffc9a71461042057806306fdde0314610455578063081812fc14610477578063095ea7b3146104af575b600080fd5b34801561042c57600080fd5b5061044061043b36600461556a565b610f91565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a610fbc565b60405161044c9190615a74565b34801561048357600080fd5b50610497610492366004615551565b61104e565b6040516001600160a01b03909116815260200161044c565b3480156104bb57600080fd5b506104cf6104ca366004615525565b6110e8565b005b3480156104dd57600080fd5b506104cf6104ec3660046156bb565b6111fe565b3480156104fd57600080fd5b506008545b60405190815260200161044c565b34801561051c57600080fd5b5061050261052b366004615551565b600f6020526000908152604090205481565b34801561054957600080fd5b50610502600d5481565b34801561055f57600080fd5b506104cf61056e366004615443565b6112b2565b34801561057f57600080fd5b506104cf61058e3660046156bb565b6112e4565b34801561059f57600080fd5b506105b36105ae366004615551565b611397565b60405161044c9190615a30565b3480156105cc57600080fd5b5061046a6105db366004615551565b6113f9565b3480156105ec57600080fd5b506105026105fb366004615525565b611494565b34801561060c57600080fd5b506104cf61061b3660046156bb565b61152a565b34801561062c57600080fd5b506104cf61063b3660046155f0565b6115aa565b34801561064c57600080fd5b506104cf61065b3660046156bb565b61167f565b34801561066c57600080fd5b50600c54610497906001600160a01b031681565b6104cf61068e36600461563c565b6116f9565b34801561069f57600080fd5b506104cf6106ae366004615443565b611dab565b3480156106bf57600080fd5b506104cf6106ce366004615551565b611dc6565b3480156106df57600080fd5b506104cf6106ee3660046153ed565b612003565b3480156106ff57600080fd5b5061074261070e366004615551565b6000908152600b60205260409020600e810154600f820154601090920154909260ff61010083048116926201000090041690565b604080519485526020850193909352901515918301919091521515606082015260800161044c565b34801561077657600080fd5b506107cf6107853660046155a4565b6000918252600b602090815260408084206001600160a01b03939093168452601283018252808420546013840183528185205460149094019092529092205460ff90921692909190565b60408051931515845260208401929092529082015260600161044c565b3480156107f857600080fd5b506104cf610807366004615551565b61204e565b34801561081857600080fd5b50610502610827366004615551565b6120d5565b34801561083857600080fd5b506104cf6108473660046153ed565b612168565b34801561085857600080fd5b506104cf610867366004615724565b6121da565b34801561087857600080fd5b50610497610887366004615551565b61231f565b34801561089857600080fd5b506104cf6108a73660046155a4565b612396565b3480156108b857600080fd5b506105026108c73660046153ed565b61241d565b3480156108d857600080fd5b506104cf6124a4565b3480156108ed57600080fd5b506104cf6108fc366004615702565b612518565b34801561090d57600080fd5b506104cf61091c366004615702565b6126b7565b34801561092d57600080fd5b506104cf61093c3660046153ed565b612722565b34801561094d57600080fd5b506104cf61095c366004615702565b61276e565b34801561096d57600080fd5b506104cf61097c366004615551565b6128ed565b34801561098d57600080fd5b506104cf61099c366004615551565b612973565b3480156109ad57600080fd5b50610a276109bc366004615551565b6000908152600b602081905260409091206005810154600982015492820154600c8301546010840154600685015460078601546011909601546001600160a01b03958616989496939560ff8085169691909316949363010000008104841693600160201b9091041690565b604080516001600160a01b039b8c168152602081019a909a5289019790975260608801959095529215156080870152951660a085015260c084019490945292151560e08301526101008201929092529015156101208201526101400161044c565b348015610a9457600080fd5b5061046a610aa3366004615702565b6129fc565b348015610ab457600080fd5b50600a546001600160a01b0316610497565b348015610ad257600080fd5b50610ae6610ae1366004615551565b612aad565b60405161044c959493929190615a87565b348015610b0357600080fd5b5061046a612ddb565b348015610b1857600080fd5b506104cf610b27366004615702565b612dea565b348015610b3857600080fd5b506104cf610b47366004615702565b612e55565b348015610b5857600080fd5b506104cf610b67366004615551565b612f56565b348015610b7857600080fd5b506104cf610b87366004615551565b612fda565b348015610b9857600080fd5b506104cf610ba73660046154f0565b613047565b348015610bb857600080fd5b506104cf610bc73660046156bb565b61310c565b348015610bd857600080fd5b50610c2b610be7366004615551565b6000908152600f60209081526040808320548352600b90915290206005810154600682015460078301546008909301546001600160a01b0392831694929091169291565b604080516001600160a01b03958616815294909316602085015291830152606082015260800161044c565b348015610c6257600080fd5b506104cf610c713660046157c7565b613186565b348015610c8257600080fd5b506104cf610c913660046156bb565b6132d2565b348015610ca257600080fd5b506104cf610cb1366004615777565b6133c7565b348015610cc257600080fd5b506104cf610cd13660046156bb565b6134df565b348015610ce257600080fd5b506104cf610cf13660046155f0565b613592565b348015610d0257600080fd5b506104cf610d11366004615484565b61366c565b348015610d2257600080fd5b506105b3610d31366004615551565b61369e565b348015610d4257600080fd5b50600e54610497906001600160a01b031681565b348015610d6257600080fd5b506104cf610d71366004615702565b6136fe565b348015610d8257600080fd5b5061046a610d91366004615551565b6137a8565b348015610da257600080fd5b506104cf610db13660046153ed565b613868565b348015610dc257600080fd5b506104cf610dd1366004615551565b6138b6565b348015610de257600080fd5b506104cf610df1366004615702565b613908565b348015610e0257600080fd5b506104cf610e11366004615551565b613bda565b348015610e2257600080fd5b506104cf610e313660046155c9565b613d3d565b348015610e4257600080fd5b5061050260165481565b348015610e5857600080fd5b50610440610e6736600461540a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ea157600080fd5b50610440610eb0366004615702565b6000918252600b602090815260408084209284526016909201905290205460ff1690565b348015610ee057600080fd5b506104cf610eef3660046155f0565b613e0a565b348015610f0057600080fd5b506104cf610f0f3660046153ed565b613ed5565b348015610f2057600080fd5b50610502610f2f366004615551565b60126020526000908152604090205481565b348015610f4d57600080fd5b50601454610497906001600160a01b031681565b348015610f6d57600080fd5b50610440610f7c3660046153ed565b60156020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610fb65750610fb682613f75565b92915050565b606060008054610fcb90615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790615dab565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166110cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006110f38261231f565b9050806001600160a01b0316836001600160a01b031614156111615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016110c3565b336001600160a01b038216148061117d575061117d8133610e67565b6111ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016110c3565b6111f98383613fc5565b505050565b6000828152600b60205260409020601001548290610100900460ff16156112375760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061127057506000818152600b60205260409020600501546001600160a01b031633145b61128c5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92860190615219565b5050505050565b6112bd335b82614033565b6112d95760405162461bcd60e51b81526004016110c390615ccc565b6111f983838361412a565b6000828152600b60205260409020601001548290610100900460ff161561131d5760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061135657506000818152600b60205260409020600501546001600160a01b031633145b6113725760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92600490920191860190615219565b6000818152601160209081526040918290208054835181840281018401909452808452606093928301828280156113ed57602002820191906000526020600020905b8154815260200190600101908083116113d9575b50505050509050919050565b6000818152600b60205260409020600a0180546060919061141990615dab565b80601f016020809104026020016040519081016040528092919081815260200182805461144590615dab565b80156113ed5780601f10611467576101008083540402835291602001916113ed565b820191906000526020600020905b8154815290600101906020018083116114755750939695505050505050565b600061149f8361241d565b82106115015760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016110c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33600090815260156020526040902054829060ff168061156357506000818152600b60205260409020600501546001600160a01b031633145b61157f5760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600390920191850190615219565b50505050565b3360009081526015602052604090205460ff166115d95760405162461bcd60e51b81526004016110c390615af4565b6000838152600b6020526040902060100154600160201b900460ff166116115760405162461bcd60e51b81526004016110c390615c12565b60005b818110156115a4576000848152600b602052604081206016018185858581811061164057611640615e67565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061167790615de0565b915050611614565b33600090815260156020526040902054829060ff16806116b857506000818152600b60205260409020600501546001600160a01b031633145b6116d45760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600a90920191850190615219565b333b63ffffffff161561174e5760405162461bcd60e51b815260206004820152601e60248201527f43616e2774206d696e742066726f6d206120636f6e747261637420736d68000060448201526064016110c3565b61175884846142d5565b61179d5760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016110c3565b600b6000868152602001908152602001600020601501826040516117c19190615930565b9081526040519081900360200190205460ff161561180d5760405162461bcd60e51b8152602060048201526009602482015268121054d217d554d15160ba1b60448201526064016110c3565b8361181a338784866142f9565b146118535760405162461bcd60e51b8152602060048201526009602482015268121054d217d190525360ba1b60448201526064016110c3565b600081116118ad5760405162461bcd60e51b815260206004820152602160248201527f596f75206d757374206d696e74206174206c65617374206f6e652070696563656044820152601760f91b60648201526084016110c3565b6000858152600b602052604090206011015481111561191f5760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206d696e74696e6720746f6f206d616e7920706965636573206044820152676174206f6e63652160c01b60648201526084016110c3565b6000858152600b60205260409020600c01548161193b60085490565b6119459190615d1d565b11156119c55760405162461bcd60e51b815260206004820152604360248201527f54686520616d6f756e74206f662070696563657320796f75206172652074727960448201527f696e6720746f206d696e74206578636565647320746865206d61782073757070606482015262363c9760e91b608482015260a4016110c3565b6000858152600b602052604090206010015460ff16806119fe57506000858152600b60205260409020600501546001600160a01b031633145b611a4a5760405162461bcd60e51b815260206004820181905260248201527f50726f6a656374206d75737420657869737420616e642062652061637469766560448201526064016110c3565b6000858152600b602052604090206010015462010000900460ff161580611a8a57506000858152600b60205260409020600501546001600160a01b031633145b611ace5760405162461bcd60e51b8152602060048201526015602482015274283ab931b430b9b2b99030b932903830bab9b2b21760591b60448201526064016110c3565b6000858152600b6020526040902060100154600160201b900460ff1615611b4c5760405162461bcd60e51b815260206004820152602c60248201527f546869732070726f6a6563742063616e206f6e6c7920626520636c61696d656460448201526b0b081b9bdd081b5a5b9d195960a21b60648201526084016110c3565b6000858152600b60205260409020600901543490611b6b908390615d49565b1115611bb25760405162461bcd60e51b815260206004820152601660248201527524b731b7b93932b1ba1022ba3432b9103b30b63ab29760511b60448201526064016110c3565b6000858152600b60205260409020601001546301000000900460ff1615611d2c576000858152600b6020908152604080832033845260120190915290205460ff16611c535760405162461bcd60e51b815260206004820152602b60248201527f4275796572206e6f742077686974656c697374656420666f722074686973207060448201526a7269766174652073616c6560a81b60648201526084016110c3565b6000858152600b6020908152604080832033845260148101835281842054601390910190925290912054611c87908361437a565b1115611ce75760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f742065786365656420616c6c6f747465642070726573616c65206d6044820152681a5b9d0818dbdd5b9d60ba1b60648201526084016110c3565b6000858152600b60209081526040808320338452601301909152902054611d0e908261437a565b6000868152600b602090815260408083203384526013019091529020555b60005b81811015611d5457611d41338761438d565b5080611d4c81615de0565b915050611d2f565b50611d5e8561455d565b6001600b600087815260200190815260200160002060150183604051611d849190615930565b908152604051908190036020019020805491151560ff199092169190911790555050505050565b6111f98383836040518060200160405280600081525061366c565b611dcf336112b7565b611e345760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016110c3565b6000818152600f60209081526040808320546013835281842054818552601090935292208054611e6690600190615d68565b81548110611e7657611e76615e67565b9060005260206000200154601060008481526020019081526020016000208281548110611ea557611ea5615e67565b90600052602060002001819055508060136000601060008681526020019081526020016000208481548110611edc57611edc615e67565b906000526020600020015481526020019081526020016000208190555060106000838152602001908152602001600020805480611f1b57611f1b615e51565b6001900381819060005260206000200160009055905560005b600084815260116020526040902054811015611f9f5760008481526011602052604081208054601292919084908110611f6f57611f6f615e67565b90600052602060002001548152602001908152602001600020600090558080611f9790615de0565b915050611f34565b506000838152601160205260408120611fb79161529d565b6000838152600f6020526040812055611fcf83614715565b6040518290849033907f49995e5dd6158cf69ad3e9777c46755a1a826a446c6416992167462dad033b2a90600090a4505050565b6014546001600160a01b0316331461202d5760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b03166000908152601560205260409020805460ff19169055565b33600090815260156020526040902054819060ff168061208757506000818152600b60205260409020600501546001600160a01b031633145b6120a35760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805464ff00000000198116600160201b9182900460ff1615909102179055565b60006120e060085490565b82106121435760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016110c3565b6008828154811061215657612156615e67565b90600052602060002001549050919050565b6014546001600160a01b031633146121925760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b0381166121b85760405162461bcd60e51b81526004016110c390615b1d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526015602052604090205460ff166122095760405162461bcd60e51b81526004016110c390615af4565b60005b818110156112ab57600083838381811061222857612228615e67565b905060200201602081019061223d91906153ed565b90506001600160a01b0381166122655760405162461bcd60e51b81526004016110c390615b1d565b6000868152600b602090815260408083206001600160a01b038516845260120190915290205460ff16156122cd5760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016110c3565b6000868152600b602090815260408083206001600160a01b03909416808452601285018352818420805460ff19166001179055835260149093019052208490558061231781615de0565b91505061220c565b6000818152600260205260408120546001600160a01b031680610fb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016110c3565b33600090815260156020526040902054829060ff16806123cf57506000818152600b60205260409020600501546001600160a01b031633145b6123eb5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060050180546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b0382166124885760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016110c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146124ce5760405162461bcd60e51b81526004016110c390615c97565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000828152600b60205260409020601001548290610100900460ff16156125515760405162461bcd60e51b81526004016110c390615c6d565b3360009081526015602052604090205460ff166125805760405162461bcd60e51b81526004016110c390615af4565b6000838152600b602081905260409091200154156126065760405162461bcd60e51b815260206004820152603860248201527f43616e206e6f74206d6f64696679206861736865732067656e6572617465642060448201527f6166746572206120746f6b656e206973206d696e7465642e000000000000000060648201526084016110c3565b60648211158015612615575060015b6126a15760405162461bcd60e51b815260206004820152605160248201527f4861736865732067656e657261746564206d757374206265206120706f73697460448201527f69766520696e746567657220616e64206d61782068617368657320706572206960648201527006e766f636174696f6e206172652031303607c1b608482015260a4016110c3565b506000918252600b6020526040909120600f0155565b33600090815260156020526040902054829060ff16806126f057506000818152600b60205260409020600501546001600160a01b031633145b61270c5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060110155565b6014546001600160a01b0316331461274c5760405162461bcd60e51b81526004016110c390615c49565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600b60205260409020601001548290610100900460ff16156127a75760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff16806127e057506000818152600b60205260409020600501546001600160a01b031633145b6127fc5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b60208190526040909120015483116128835760405162461bcd60e51b815260206004820152603d60248201527f596f75206d75737420736574206d617820696e766f636174696f6e732067726560448201527f61746572207468616e2063757272656e7420696e766f636174696f6e7300000060648201526084016110c3565b620f42408311156128d65760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f742065786365656420312c3030302c30303000000000000000000060448201526064016110c3565b50506000918252600b6020526040909120600c0155565b33600090815260156020526040902054819060ff168061292657506000818152600b60205260409020600501546001600160a01b031633145b6129425760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805463ff00000019811663010000009182900460ff1615909102179055565b3360009081526015602052604090205460ff166129a25760405162461bcd60e51b81526004016110c390615af4565b6000818152600b60205260409020601001548190610100900460ff16156129db5760405162461bcd60e51b81526004016110c390615c6d565b506000908152600b60205260409020601001805461ff001916610100179055565b6000828152600b60209081526040808320848452600d019091529020805460609190612a2790615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5390615dab565b8015612aa05780601f10612a7557610100808354040283529160200191612aa0565b820191906000526020600020905b815481529060010190602001808311612a8357829003601f168201915b5050505050905092915050565b6060806060806060600b60008781526020019081526020016000206000018054612ad690615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0290615dab565b8015612b4f5780601f10612b2457610100808354040283529160200191612b4f565b820191906000526020600020905b815481529060010190602001808311612b3257829003601f168201915b5050506000898152600b60205260409020600101805493985092612b7592509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba190615dab565b8015612bee5780601f10612bc357610100808354040283529160200191612bee565b820191906000526020600020905b815481529060010190602001808311612bd157829003601f168201915b5050506000898152600b60205260409020600201805493975092612c1492509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4090615dab565b8015612c8d5780601f10612c6257610100808354040283529160200191612c8d565b820191906000526020600020905b815481529060010190602001808311612c7057829003601f168201915b5050506000898152600b60205260409020600301805493965092612cb392509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdf90615dab565b8015612d2c5780601f10612d0157610100808354040283529160200191612d2c565b820191906000526020600020905b815481529060010190602001808311612d0f57829003601f168201915b5050506000898152600b60205260409020600401805493955092612d5292509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7e90615dab565b8015612dcb5780601f10612da057610100808354040283529160200191612dcb565b820191906000526020600020905b815481529060010190602001808311612dae57829003601f168201915b5050505050905091939590929450565b606060018054610fcb90615dab565b33600090815260156020526040902054829060ff1680612e2357506000818152600b60205260409020600501546001600160a01b031633145b612e3f5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060090155565b3360009081526015602052604090205460ff16612e845760405162461bcd60e51b81526004016110c390615af4565b6000828152600b6020526040902060100154600160201b900460ff16612ebc5760405162461bcd60e51b81526004016110c390615c12565b60005b6000828152601060205260409020548110156111f9576001600b60008581526020019081526020016000206016016000601060008681526020019081526020016000208481548110612f1357612f13615e67565b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612f4e90615de0565b915050612ebf565b33600090815260156020526040902054819060ff1680612f8f57506000818152600b60205260409020600501546001600160a01b031633145b612fab5760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805462ff0000198116620100009182900460ff1615909102179055565b6014546001600160a01b031633146130045760405162461bcd60e51b81526004016110c390615c49565b60328111156130425760405162461bcd60e51b815260206004820152600a6024820152694d6178206f662035302560b01b60448201526064016110c3565b600d55565b6001600160a01b0382163314156130a05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016110c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260156020526040902054829060ff168061314557506000818152600b60205260409020600501546001600160a01b031633145b6131615760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600290920191850190615219565b3360009081526015602052604090205460ff166131b55760405162461bcd60e51b81526004016110c390615af4565b6016546000818152600b602090815260409091206005810180546001600160a01b03191633179055600981018b905560108101805462ff0000191662010000179055600c81018a9055885161320c928a0190615219565b506000818152600b60209081526040909120875161323292600290920191890190615219565b506000818152600b60209081526040909120865161325892600190920191880190615219565b506000818152600b60209081526040909120855161327e92600390920191870190615219565b506000818152600b60205260409020601181018490556001600f82018190556010909101805464ff000000001916600160201b851515021790556016546132c49161437a565b601655505050505050505050565b6000828152600b60205260409020601001548290610100900460ff161561330b5760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061334457506000818152600b60205260409020600501546001600160a01b031633145b6133605760405162461bcd60e51b81526004016110c390615b95565b6000848152600b60209081526040808320600e8101548452600d018252909120845161338e92860190615219565b506000848152600b60205260409020600e01546133ac90600161437a565b6000948552600b6020526040909420600e0193909355505050565b6000838152600b60205260409020601001548390610100900460ff16156134005760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054849060ff168061343957506000818152600b60205260409020600501546001600160a01b031633145b6134555760405162461bcd60e51b81526004016110c390615b95565b6000858152600b60205260409020600e015484106134ad5760405162461bcd60e51b81526020600482015260156024820152747363726970744964206f7574206f662072616e676560581b60448201526064016110c3565b6000858152600b60209081526040808320878452600d01825290912084516134d792860190615219565b505050505050565b6000828152600b60205260409020601001548290610100900460ff16156135185760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061355157506000818152600b60205260409020600501546001600160a01b031633145b61356d5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92600190920191860190615219565b3360009081526015602052604090205460ff166135c15760405162461bcd60e51b81526004016110c390615af4565b6000838152600b6020526040902060100154600160201b900460ff166135f95760405162461bcd60e51b81526004016110c390615c12565b60005b818110156115a4576000848152600b6020526040812060019160169091019085858581811061362d5761362d615e67565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061366490615de0565b9150506135fc565b6136763383614033565b6136925760405162461bcd60e51b81526004016110c390615ccc565b6115a4848484846147bc565b6000818152601060209081526040918290208054835181840281018401909452808452606093928301828280156113ed57602002820191906000526020600020908154815260200190600101908083116113d95750505050509050919050565b33600090815260156020526040902054829060ff168061373757506000818152600b60205260409020600501546001600160a01b031633145b6137535760405162461bcd60e51b81526004016110c390615b95565b60648211156137925760405162461bcd60e51b815260206004820152600b60248201526a4d6178206f66203130302560a81b60448201526064016110c3565b506000918252600b602052604090912060080155565b6060816137cc816000908152600260205260409020546001600160a01b0316151590565b6138185760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f7420657869737400000000000000000060448201526064016110c3565b6000838152600f60209081526040808320548352600b9091529020600a0161383f846147ef565b60405160200161385092919061594c565b60405160208183030381529060405291505b50919050565b6014546001600160a01b031633146138925760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b3360009081526015602052604090205460ff166138e55760405162461bcd60e51b81526004016110c390615af4565b6000908152600b60205260409020601001805460ff19811660ff90911615179055565b333b63ffffffff161561395d5760405162461bcd60e51b815260206004820152601f60248201527f43616e277420636c61696d2066726f6d206120636f6e747261637420736d680060448201526064016110c3565b6000828152600b6020526040902060100154600160201b900460ff166139c55760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636c61696d61626c652070726f6a65637400000000000000000060448201526064016110c3565b6139cf3382614033565b613a1b5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656460448201526064016110c3565b6000828152600b6020908152604080832084845260160190915290205460ff16613aa35760405162461bcd60e51b815260206004820152603360248201527f546f6b656e206973206e6f7420636c61696d61626c652c206f722068617320616044820152721b1c9958591e481899595b8818db185a5b5959606a1b60648201526084016110c3565b6000828152600b602052604090206010015460ff1680613adc57506000828152600b60205260409020600501546001600160a01b031633145b613b285760405162461bcd60e51b815260206004820181905260248201527f50726f6a656374206d75737420657869737420616e642062652061637469766560448201526064016110c3565b6000828152600b602052604090206010015462010000900460ff161580613b6857506000828152600b60205260409020600501546001600160a01b031633145b613bac5760405162461bcd60e51b8152602060048201526015602482015274283ab931b430b9b2b99030b932903830bab9b2b21760591b60448201526064016110c3565b6000828152600b602090815260408083208484526016019091529020805460ff191690556111f9338361438d565b6000818152600b60205260409020601001548190610100900460ff1615613c135760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054829060ff1680613c4c57506000818152600b60205260409020600501546001600160a01b031633145b613c685760405162461bcd60e51b81526004016110c390615b95565b6000838152600b60205260409020600e0154613cc65760405162461bcd60e51b815260206004820152601e60248201527f746865726520617265206e6f207363726970747320746f2072656d6f7665000060448201526064016110c3565b6000838152600b60205260408120600e810154600d9091019190613cec90600190615d68565b81526020019081526020016000206000613d0691906152bb565b6000838152600b60205260409020600e0154613d239060016148ed565b6000938452600b6020526040909320600e01929092555050565b33600090815260156020526040902054839060ff1680613d7657506000818152600b60205260409020600501546001600160a01b031633145b613d925760405162461bcd60e51b81526004016110c390615b95565b6064821115613dd15760405162461bcd60e51b815260206004820152600b60248201526a4d6178206f66203130302560a81b60448201526064016110c3565b506000928352600b60205260409092206006810180546001600160a01b0319166001600160a01b03939093169290921790915560070155565b3360009081526015602052604090205460ff16613e395760405162461bcd60e51b81526004016110c390615af4565b60005b818110156115a4576000838383818110613e5857613e58615e67565b9050602002016020810190613e6d91906153ed565b90506001600160a01b038116613e955760405162461bcd60e51b81526004016110c390615b1d565b6000858152600b602090815260408083206001600160a01b0390941683526012909301905220805460ff1916905580613ecd81615de0565b915050613e3c565b600a546001600160a01b03163314613eff5760405162461bcd60e51b81526004016110c390615c97565b6001600160a01b038116613f255760405162461bcd60e51b81526004016110c390615bcc565b601480546001600160a01b0383166001600160a01b031991821681179092556000828152601560205260409020805460ff19166001179055600c80549091169091179055613f72816148f9565b50565b60006001600160e01b031982166380ac58cd60e01b1480613fa657506001600160e01b03198216635b5e139f60e01b145b80610fb657506301ffc9a760e01b6001600160e01b0319831614610fb6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613ffa8261231f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166140ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016110c3565b60006140b78361231f565b9050806001600160a01b0316846001600160a01b031614806140f25750836001600160a01b03166140e78461104e565b6001600160a01b0316145b8061412257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661413d8261231f565b6001600160a01b0316146141a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016110c3565b6001600160a01b0382166142075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016110c3565b6142128383836149a5565b61421d600082613fc5565b6001600160a01b0383166000908152600360205260408120805460019290614246908490615d68565b90915550506001600160a01b0382166000908152600360205260408120805460019290614274908490615d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006142e18383614a5d565b600e546001600160a01b039182169116149392505050565b6000808585858560405160200161431394939291906158ea565b60408051808303601f1901815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000082850152603c8085019190915282518085039091018152605c90930190915281519101209695505050505050565b60006143868284615d1d565b9392505050565b6000818152600b602081905260408220015481906143ae620f424085615d49565b6143b89190615d1d565b6000848152600b602081815260408084208301548585526013835290842081905592879052529091506143ec90600161437a565b6000848152600b60208190526040822001919091555b6000848152600b60205260409020600f01548110156144b8576000848152600b6020819052604082200154614437438461437a565b60408051602081019390935282015233606090811b6bffffffffffffffffffffffff19169082015260740160408051601f1981840301815291815281516020928301206000868152601184528281208054600181018255908252848220018290559081526012909252902083905550806144b081615de0565b915050614402565b506144c38482614a81565b6000818152600f6020908152604080832086905585835260108252808320805460018101825590845282842001849055858352600b9182905291829020908101546009909101549151859284926001600160a01b038916927f94c792774c59479f7bd68442f3af3691c02123a5aabee8b6f9116d8af8aa66699261454e928252602082015260400190565b60405180910390a49392505050565b3415613f72576000818152600b60205260408120600901549061458034836148ed565b905080156145b757604051339082156108fc029083906000818181858888f193505050501580156145b5573d6000803e3d6000fd5b505b600d546000906145d2906145cc856064614a9f565b90614aab565b9050801561461657600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015614614573d6000803e3d6000fd5b505b600061462284836148ed565b6000868152600b602052604081206007015491925090156146af576000868152600b602052604090206007015461465e906145cc846064614a9f565b905080156146af576000868152600b60205260408082206006015490516001600160a01b039091169183156108fc02918491818181858888f193505050501580156146ad573d6000803e3d6000fd5b505b60006146bb83836148ed565b9050801561470c576000878152600b60205260408082206005015490516001600160a01b039091169183156108fc02918491818181858888f1935050505015801561470a573d6000803e3d6000fd5b505b50505050505050565b60006147208261231f565b905061472e816000846149a5565b614739600083613fc5565b6001600160a01b0381166000908152600360205260408120805460019290614762908490615d68565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6147c784848461412a565b6147d384848484614ab7565b6115a45760405162461bcd60e51b81526004016110c390615b43565b6060816148135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561483d578061482781615de0565b91506148369050600a83615d35565b9150614817565b60008167ffffffffffffffff81111561485857614858615e7d565b6040519080825280601f01601f191660200182016040528015614882576020820181803683370190505b5090505b841561412257614897600183615d68565b91506148a4600a86615dfb565b6148af906030615d1d565b60f81b8183815181106148c4576148c4615e67565b60200101906001600160f81b031916908160001a9053506148e6600a86615d35565b9450614886565b60006143868284615d68565b600a546001600160a01b031633146149235760405162461bcd60e51b81526004016110c390615c97565b6001600160a01b0381166149495760405162461bcd60e51b81526004016110c390615bcc565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316614a00576149fb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b614a23565b816001600160a01b0316836001600160a01b031614614a2357614a238382614bc1565b6001600160a01b038216614a3a576111f981614c5e565b826001600160a01b0316826001600160a01b0316146111f9576111f98282614d0d565b6000806000614a6c8585614d51565b91509150614a7981614dc1565b509392505050565b614a9b828260405180602001604052806000815250614f7c565b5050565b60006143868284615d35565b60006143868284615d49565b60006001600160a01b0384163b15614bb957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614afb9033908990889088906004016159f3565b602060405180830381600087803b158015614b1557600080fd5b505af1925050508015614b45575060408051601f3d908101601f19168201909252614b4291810190615587565b60015b614b9f573d808015614b73576040519150601f19603f3d011682016040523d82523d6000602084013e614b78565b606091505b508051614b975760405162461bcd60e51b81526004016110c390615b43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614122565b506001614122565b60006001614bce8461241d565b614bd89190615d68565b600083815260076020526040902054909150808214614c2b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614c7090600190615d68565b60008381526009602052604081205460088054939450909284908110614c9857614c98615e67565b906000526020600020015490508060088381548110614cb957614cb9615e67565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614cf157614cf1615e51565b6001900381819060005260206000200160009055905550505050565b6000614d188361241d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415614d885760208301516040840151606085015160001a614d7c87828585614faf565b94509450505050614dba565b825160401415614db25760208301516040840151614da786838361509c565b935093505050614dba565b506000905060025b9250929050565b6000816004811115614dd557614dd5615e3b565b1415614dde5750565b6001816004811115614df257614df2615e3b565b1415614e405760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016110c3565b6002816004811115614e5457614e54615e3b565b1415614ea25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016110c3565b6003816004811115614eb657614eb6615e3b565b1415614f0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016110c3565b6004816004811115614f2357614f23615e3b565b1415613f725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016110c3565b614f8683836150cb565b614f936000848484614ab7565b6111f95760405162461bcd60e51b81526004016110c390615b43565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614fe65750600090506003615093565b8460ff16601b14158015614ffe57508460ff16601c14155b1561500f5750600090506004615093565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015615063573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661508c57600060019250925050615093565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016150bd87828885614faf565b935093505050935093915050565b6001600160a01b0382166151215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016110c3565b6000818152600260205260409020546001600160a01b0316156151865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016110c3565b615192600083836149a5565b6001600160a01b03821660009081526003602052604081208054600192906151bb908490615d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461522590615dab565b90600052602060002090601f016020900481019282615247576000855561528d565b82601f1061526057805160ff191683800117855561528d565b8280016001018555821561528d579182015b8281111561528d578251825591602001919060010190615272565b506152999291506152f1565b5090565b5080546000825590600052602060002090810190613f7291906152f1565b5080546152c790615dab565b6000825580601f106152d7575050565b601f016020900490600052602060002090810190613f7291905b5b8082111561529957600081556001016152f2565b60008083601f84011261531857600080fd5b50813567ffffffffffffffff81111561533057600080fd5b6020830191508360208260051b8501011115614dba57600080fd5b8035801515811461535b57600080fd5b919050565b600082601f83011261537157600080fd5b813567ffffffffffffffff8082111561538c5761538c615e7d565b604051601f8301601f19908116603f011681019082821181831017156153b4576153b4615e7d565b816040528381528660208588010111156153cd57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156153ff57600080fd5b813561438681615e93565b6000806040838503121561541d57600080fd5b823561542881615e93565b9150602083013561543881615e93565b809150509250929050565b60008060006060848603121561545857600080fd5b833561546381615e93565b9250602084013561547381615e93565b929592945050506040919091013590565b6000806000806080858703121561549a57600080fd5b84356154a581615e93565b935060208501356154b581615e93565b925060408501359150606085013567ffffffffffffffff8111156154d857600080fd5b6154e487828801615360565b91505092959194509250565b6000806040838503121561550357600080fd5b823561550e81615e93565b915061551c6020840161534b565b90509250929050565b6000806040838503121561553857600080fd5b823561554381615e93565b946020939093013593505050565b60006020828403121561556357600080fd5b5035919050565b60006020828403121561557c57600080fd5b813561438681615ea8565b60006020828403121561559957600080fd5b815161438681615ea8565b600080604083850312156155b757600080fd5b82359150602083013561543881615e93565b6000806000606084860312156155de57600080fd5b83359250602084013561547381615e93565b60008060006040848603121561560557600080fd5b83359250602084013567ffffffffffffffff81111561562357600080fd5b61562f86828701615306565b9497909650939450505050565b600080600080600060a0868803121561565457600080fd5b8535945060208601359350604086013567ffffffffffffffff8082111561567a57600080fd5b61568689838a01615360565b9450606088013591508082111561569c57600080fd5b506156a988828901615360565b95989497509295608001359392505050565b600080604083850312156156ce57600080fd5b82359150602083013567ffffffffffffffff8111156156ec57600080fd5b6156f885828601615360565b9150509250929050565b6000806040838503121561571557600080fd5b50508035926020909101359150565b6000806000806060858703121561573a57600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561575f57600080fd5b61576b87828801615306565b95989497509550505050565b60008060006060848603121561578c57600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156157b157600080fd5b6157bd86828701615360565b9150509250925092565b600080600080600080600080610100898b0312156157e457600080fd5b8835975060208901359650604089013567ffffffffffffffff8082111561580a57600080fd5b6158168c838d01615360565b975060608b013591508082111561582c57600080fd5b6158388c838d01615360565b965060808b013591508082111561584e57600080fd5b61585a8c838d01615360565b955060a08b013591508082111561587057600080fd5b5061587d8b828c01615360565b93505060c0890135915061589360e08a0161534b565b90509295985092959890939650565b600081518084526158ba816020860160208601615d7f565b601f01601f19169290920160200192915050565b600081516158e0818560208601615d7f565b9290920192915050565b6bffffffffffffffffffffffff198560601b16815283601482015282603482015260008251615920816054850160208701615d7f565b9190910160540195945050505050565b60008251615942818460208701615d7f565b9190910192915050565b600080845481600182811c91508083168061596857607f831692505b602080841082141561598857634e487b7160e01b86526022600452602486fd5b81801561599c57600181146159ad576159da565b60ff198616895284890196506159da565b60008b81526020902060005b868110156159d25781548b8201529085019083016159b9565b505084890196505b5050505050506159ea81856158ce565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615a26908301846158a2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a6857835183529284019291840191600101615a4c565b50909695505050505050565b60208152600061438660208301846158a2565b60a081526000615a9a60a08301886158a2565b8281036020840152615aac81886158a2565b90508281036040840152615ac081876158a2565b90508281036060840152615ad481866158a2565b90508281036080840152615ae881856158a2565b98975050505050505050565b6020808252600f908201526e13db9b1e48185d5d1a1bdc9a5e9959608a1b604082015260600190565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526019908201527f4f6e6c7920617274697374206f7220617574686f72697a656400000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526018908201527f50726f6a656374206973206e6f7420636c61696d61626c650000000000000000604082015260600190565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b60208082526010908201526f13db9b1e481a59881d5b9b1bd8dad95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115615d3057615d30615e0f565b500190565b600082615d4457615d44615e25565b500490565b6000816000190483118215151615615d6357615d63615e0f565b500290565b600082821015615d7a57615d7a615e0f565b500390565b60005b83811015615d9a578181015183820152602001615d82565b838111156115a45750506000910152565b600181811c90821680615dbf57607f821691505b6020821081141561386257634e487b7160e01b600052602260045260246000fd5b6000600019821415615df457615df4615e0f565b5060010190565b600082615e0a57615e0a615e25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114613f7257600080fd5b6001600160e01b031981168114613f7257600080fdfea264697066735822122010c865e33e0a430cc102fa18467926723ac4b4abd348441a3be08f3162fffc3764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061041b5760003560e01c80638ba8f14d1161021e578063b88d4fde11610123578063e13208b4116100ab578063f221c20c1161007a578063f221c20c14610ed4578063f2fde38b14610ef4578063f51f74a914610f14578063f851a44014610f41578063fe9fbb8014610f6157600080fd5b8063e13208b414610e16578063e935b7b114610e36578063e985e9c514610e4c578063ebabb02714610e9557600080fd5b8063c87b56dd116100f2578063c87b56dd14610d76578063cf1c316a14610d96578063d03c390c14610db6578063d1d0bec014610dd6578063db2ff86114610df657600080fd5b8063b88d4fde14610cf6578063bee04f9c14610d16578063c1df653814610d36578063c34a03b514610d5657600080fd5b8063a191b3fa116101a6578063aa7cc25711610175578063aa7cc25714610c56578063acad012414610c76578063b1656ba314610c96578063b7b04fae14610cb6578063b86e725514610cd657600080fd5b8063a191b3fa14610b6c578063a22cb46514610b8c578063a3b2cca614610bac578063a65ff74c14610bcc57600080fd5b80638dd91a56116101ed5780638dd91a5614610ac657806395d89b4114610af757806397dc86cf14610b0c5780639f47a5df14610b2c578063a11ec70a14610b4c57600080fd5b80638ba8f14d146109815780638c2c3622146109a15780638c3c9cdd14610a885780638da5cb5b14610aa857600080fd5b806342842e0e116103245780636352211e116102ac57806377444f621161027b57806377444f62146108e15780637ec2d2d0146109015780637ed230cc14610921578063826fc391146109415780638825c29f1461096157600080fd5b80636352211e1461086c57806369d14faf1461088c57806370a08231146108ac578063715018a6146108cc57600080fd5b80634baea25b116102f35780634baea25b1461076a5780634dea982a146107ec5780634f6ccce71461080c57806358bc29441461082c578063634cf6881461084c57600080fd5b806342842e0e1461069357806342966c68146106b3578063485d7d94146106d35780634aa6d417146106f357600080fd5b806325b75d68116103a7578063378599631161037657806337859963146106005780633ca5f677146106205780633e48e84814610640578063419ed70e14610660578063427dee381461068057600080fd5b806325b75d6814610573578063271aaab4146105935780632d9c0205146105c05780632f745c59146105e057600080fd5b80630d170673116103ee5780630d170673146104d157806318160ddd146104f15780631b689c0b146105105780631e4e7efc1461053d57806323b872dd1461055357600080fd5b806301ffc9a71461042057806306fdde0314610455578063081812fc14610477578063095ea7b3146104af575b600080fd5b34801561042c57600080fd5b5061044061043b36600461556a565b610f91565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a610fbc565b60405161044c9190615a74565b34801561048357600080fd5b50610497610492366004615551565b61104e565b6040516001600160a01b03909116815260200161044c565b3480156104bb57600080fd5b506104cf6104ca366004615525565b6110e8565b005b3480156104dd57600080fd5b506104cf6104ec3660046156bb565b6111fe565b3480156104fd57600080fd5b506008545b60405190815260200161044c565b34801561051c57600080fd5b5061050261052b366004615551565b600f6020526000908152604090205481565b34801561054957600080fd5b50610502600d5481565b34801561055f57600080fd5b506104cf61056e366004615443565b6112b2565b34801561057f57600080fd5b506104cf61058e3660046156bb565b6112e4565b34801561059f57600080fd5b506105b36105ae366004615551565b611397565b60405161044c9190615a30565b3480156105cc57600080fd5b5061046a6105db366004615551565b6113f9565b3480156105ec57600080fd5b506105026105fb366004615525565b611494565b34801561060c57600080fd5b506104cf61061b3660046156bb565b61152a565b34801561062c57600080fd5b506104cf61063b3660046155f0565b6115aa565b34801561064c57600080fd5b506104cf61065b3660046156bb565b61167f565b34801561066c57600080fd5b50600c54610497906001600160a01b031681565b6104cf61068e36600461563c565b6116f9565b34801561069f57600080fd5b506104cf6106ae366004615443565b611dab565b3480156106bf57600080fd5b506104cf6106ce366004615551565b611dc6565b3480156106df57600080fd5b506104cf6106ee3660046153ed565b612003565b3480156106ff57600080fd5b5061074261070e366004615551565b6000908152600b60205260409020600e810154600f820154601090920154909260ff61010083048116926201000090041690565b604080519485526020850193909352901515918301919091521515606082015260800161044c565b34801561077657600080fd5b506107cf6107853660046155a4565b6000918252600b602090815260408084206001600160a01b03939093168452601283018252808420546013840183528185205460149094019092529092205460ff90921692909190565b60408051931515845260208401929092529082015260600161044c565b3480156107f857600080fd5b506104cf610807366004615551565b61204e565b34801561081857600080fd5b50610502610827366004615551565b6120d5565b34801561083857600080fd5b506104cf6108473660046153ed565b612168565b34801561085857600080fd5b506104cf610867366004615724565b6121da565b34801561087857600080fd5b50610497610887366004615551565b61231f565b34801561089857600080fd5b506104cf6108a73660046155a4565b612396565b3480156108b857600080fd5b506105026108c73660046153ed565b61241d565b3480156108d857600080fd5b506104cf6124a4565b3480156108ed57600080fd5b506104cf6108fc366004615702565b612518565b34801561090d57600080fd5b506104cf61091c366004615702565b6126b7565b34801561092d57600080fd5b506104cf61093c3660046153ed565b612722565b34801561094d57600080fd5b506104cf61095c366004615702565b61276e565b34801561096d57600080fd5b506104cf61097c366004615551565b6128ed565b34801561098d57600080fd5b506104cf61099c366004615551565b612973565b3480156109ad57600080fd5b50610a276109bc366004615551565b6000908152600b602081905260409091206005810154600982015492820154600c8301546010840154600685015460078601546011909601546001600160a01b03958616989496939560ff8085169691909316949363010000008104841693600160201b9091041690565b604080516001600160a01b039b8c168152602081019a909a5289019790975260608801959095529215156080870152951660a085015260c084019490945292151560e08301526101008201929092529015156101208201526101400161044c565b348015610a9457600080fd5b5061046a610aa3366004615702565b6129fc565b348015610ab457600080fd5b50600a546001600160a01b0316610497565b348015610ad257600080fd5b50610ae6610ae1366004615551565b612aad565b60405161044c959493929190615a87565b348015610b0357600080fd5b5061046a612ddb565b348015610b1857600080fd5b506104cf610b27366004615702565b612dea565b348015610b3857600080fd5b506104cf610b47366004615702565b612e55565b348015610b5857600080fd5b506104cf610b67366004615551565b612f56565b348015610b7857600080fd5b506104cf610b87366004615551565b612fda565b348015610b9857600080fd5b506104cf610ba73660046154f0565b613047565b348015610bb857600080fd5b506104cf610bc73660046156bb565b61310c565b348015610bd857600080fd5b50610c2b610be7366004615551565b6000908152600f60209081526040808320548352600b90915290206005810154600682015460078301546008909301546001600160a01b0392831694929091169291565b604080516001600160a01b03958616815294909316602085015291830152606082015260800161044c565b348015610c6257600080fd5b506104cf610c713660046157c7565b613186565b348015610c8257600080fd5b506104cf610c913660046156bb565b6132d2565b348015610ca257600080fd5b506104cf610cb1366004615777565b6133c7565b348015610cc257600080fd5b506104cf610cd13660046156bb565b6134df565b348015610ce257600080fd5b506104cf610cf13660046155f0565b613592565b348015610d0257600080fd5b506104cf610d11366004615484565b61366c565b348015610d2257600080fd5b506105b3610d31366004615551565b61369e565b348015610d4257600080fd5b50600e54610497906001600160a01b031681565b348015610d6257600080fd5b506104cf610d71366004615702565b6136fe565b348015610d8257600080fd5b5061046a610d91366004615551565b6137a8565b348015610da257600080fd5b506104cf610db13660046153ed565b613868565b348015610dc257600080fd5b506104cf610dd1366004615551565b6138b6565b348015610de257600080fd5b506104cf610df1366004615702565b613908565b348015610e0257600080fd5b506104cf610e11366004615551565b613bda565b348015610e2257600080fd5b506104cf610e313660046155c9565b613d3d565b348015610e4257600080fd5b5061050260165481565b348015610e5857600080fd5b50610440610e6736600461540a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ea157600080fd5b50610440610eb0366004615702565b6000918252600b602090815260408084209284526016909201905290205460ff1690565b348015610ee057600080fd5b506104cf610eef3660046155f0565b613e0a565b348015610f0057600080fd5b506104cf610f0f3660046153ed565b613ed5565b348015610f2057600080fd5b50610502610f2f366004615551565b60126020526000908152604090205481565b348015610f4d57600080fd5b50601454610497906001600160a01b031681565b348015610f6d57600080fd5b50610440610f7c3660046153ed565b60156020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610fb65750610fb682613f75565b92915050565b606060008054610fcb90615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790615dab565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166110cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006110f38261231f565b9050806001600160a01b0316836001600160a01b031614156111615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016110c3565b336001600160a01b038216148061117d575061117d8133610e67565b6111ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016110c3565b6111f98383613fc5565b505050565b6000828152600b60205260409020601001548290610100900460ff16156112375760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061127057506000818152600b60205260409020600501546001600160a01b031633145b61128c5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92860190615219565b5050505050565b6112bd335b82614033565b6112d95760405162461bcd60e51b81526004016110c390615ccc565b6111f983838361412a565b6000828152600b60205260409020601001548290610100900460ff161561131d5760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061135657506000818152600b60205260409020600501546001600160a01b031633145b6113725760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92600490920191860190615219565b6000818152601160209081526040918290208054835181840281018401909452808452606093928301828280156113ed57602002820191906000526020600020905b8154815260200190600101908083116113d9575b50505050509050919050565b6000818152600b60205260409020600a0180546060919061141990615dab565b80601f016020809104026020016040519081016040528092919081815260200182805461144590615dab565b80156113ed5780601f10611467576101008083540402835291602001916113ed565b820191906000526020600020905b8154815290600101906020018083116114755750939695505050505050565b600061149f8361241d565b82106115015760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016110c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33600090815260156020526040902054829060ff168061156357506000818152600b60205260409020600501546001600160a01b031633145b61157f5760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600390920191850190615219565b50505050565b3360009081526015602052604090205460ff166115d95760405162461bcd60e51b81526004016110c390615af4565b6000838152600b6020526040902060100154600160201b900460ff166116115760405162461bcd60e51b81526004016110c390615c12565b60005b818110156115a4576000848152600b602052604081206016018185858581811061164057611640615e67565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061167790615de0565b915050611614565b33600090815260156020526040902054829060ff16806116b857506000818152600b60205260409020600501546001600160a01b031633145b6116d45760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600a90920191850190615219565b333b63ffffffff161561174e5760405162461bcd60e51b815260206004820152601e60248201527f43616e2774206d696e742066726f6d206120636f6e747261637420736d68000060448201526064016110c3565b61175884846142d5565b61179d5760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016110c3565b600b6000868152602001908152602001600020601501826040516117c19190615930565b9081526040519081900360200190205460ff161561180d5760405162461bcd60e51b8152602060048201526009602482015268121054d217d554d15160ba1b60448201526064016110c3565b8361181a338784866142f9565b146118535760405162461bcd60e51b8152602060048201526009602482015268121054d217d190525360ba1b60448201526064016110c3565b600081116118ad5760405162461bcd60e51b815260206004820152602160248201527f596f75206d757374206d696e74206174206c65617374206f6e652070696563656044820152601760f91b60648201526084016110c3565b6000858152600b602052604090206011015481111561191f5760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206d696e74696e6720746f6f206d616e7920706965636573206044820152676174206f6e63652160c01b60648201526084016110c3565b6000858152600b60205260409020600c01548161193b60085490565b6119459190615d1d565b11156119c55760405162461bcd60e51b815260206004820152604360248201527f54686520616d6f756e74206f662070696563657320796f75206172652074727960448201527f696e6720746f206d696e74206578636565647320746865206d61782073757070606482015262363c9760e91b608482015260a4016110c3565b6000858152600b602052604090206010015460ff16806119fe57506000858152600b60205260409020600501546001600160a01b031633145b611a4a5760405162461bcd60e51b815260206004820181905260248201527f50726f6a656374206d75737420657869737420616e642062652061637469766560448201526064016110c3565b6000858152600b602052604090206010015462010000900460ff161580611a8a57506000858152600b60205260409020600501546001600160a01b031633145b611ace5760405162461bcd60e51b8152602060048201526015602482015274283ab931b430b9b2b99030b932903830bab9b2b21760591b60448201526064016110c3565b6000858152600b6020526040902060100154600160201b900460ff1615611b4c5760405162461bcd60e51b815260206004820152602c60248201527f546869732070726f6a6563742063616e206f6e6c7920626520636c61696d656460448201526b0b081b9bdd081b5a5b9d195960a21b60648201526084016110c3565b6000858152600b60205260409020600901543490611b6b908390615d49565b1115611bb25760405162461bcd60e51b815260206004820152601660248201527524b731b7b93932b1ba1022ba3432b9103b30b63ab29760511b60448201526064016110c3565b6000858152600b60205260409020601001546301000000900460ff1615611d2c576000858152600b6020908152604080832033845260120190915290205460ff16611c535760405162461bcd60e51b815260206004820152602b60248201527f4275796572206e6f742077686974656c697374656420666f722074686973207060448201526a7269766174652073616c6560a81b60648201526084016110c3565b6000858152600b6020908152604080832033845260148101835281842054601390910190925290912054611c87908361437a565b1115611ce75760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f742065786365656420616c6c6f747465642070726573616c65206d6044820152681a5b9d0818dbdd5b9d60ba1b60648201526084016110c3565b6000858152600b60209081526040808320338452601301909152902054611d0e908261437a565b6000868152600b602090815260408083203384526013019091529020555b60005b81811015611d5457611d41338761438d565b5080611d4c81615de0565b915050611d2f565b50611d5e8561455d565b6001600b600087815260200190815260200160002060150183604051611d849190615930565b908152604051908190036020019020805491151560ff199092169190911790555050505050565b6111f98383836040518060200160405280600081525061366c565b611dcf336112b7565b611e345760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016110c3565b6000818152600f60209081526040808320546013835281842054818552601090935292208054611e6690600190615d68565b81548110611e7657611e76615e67565b9060005260206000200154601060008481526020019081526020016000208281548110611ea557611ea5615e67565b90600052602060002001819055508060136000601060008681526020019081526020016000208481548110611edc57611edc615e67565b906000526020600020015481526020019081526020016000208190555060106000838152602001908152602001600020805480611f1b57611f1b615e51565b6001900381819060005260206000200160009055905560005b600084815260116020526040902054811015611f9f5760008481526011602052604081208054601292919084908110611f6f57611f6f615e67565b90600052602060002001548152602001908152602001600020600090558080611f9790615de0565b915050611f34565b506000838152601160205260408120611fb79161529d565b6000838152600f6020526040812055611fcf83614715565b6040518290849033907f49995e5dd6158cf69ad3e9777c46755a1a826a446c6416992167462dad033b2a90600090a4505050565b6014546001600160a01b0316331461202d5760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b03166000908152601560205260409020805460ff19169055565b33600090815260156020526040902054819060ff168061208757506000818152600b60205260409020600501546001600160a01b031633145b6120a35760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805464ff00000000198116600160201b9182900460ff1615909102179055565b60006120e060085490565b82106121435760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016110c3565b6008828154811061215657612156615e67565b90600052602060002001549050919050565b6014546001600160a01b031633146121925760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b0381166121b85760405162461bcd60e51b81526004016110c390615b1d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526015602052604090205460ff166122095760405162461bcd60e51b81526004016110c390615af4565b60005b818110156112ab57600083838381811061222857612228615e67565b905060200201602081019061223d91906153ed565b90506001600160a01b0381166122655760405162461bcd60e51b81526004016110c390615b1d565b6000868152600b602090815260408083206001600160a01b038516845260120190915290205460ff16156122cd5760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016110c3565b6000868152600b602090815260408083206001600160a01b03909416808452601285018352818420805460ff19166001179055835260149093019052208490558061231781615de0565b91505061220c565b6000818152600260205260408120546001600160a01b031680610fb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016110c3565b33600090815260156020526040902054829060ff16806123cf57506000818152600b60205260409020600501546001600160a01b031633145b6123eb5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060050180546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b0382166124885760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016110c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146124ce5760405162461bcd60e51b81526004016110c390615c97565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000828152600b60205260409020601001548290610100900460ff16156125515760405162461bcd60e51b81526004016110c390615c6d565b3360009081526015602052604090205460ff166125805760405162461bcd60e51b81526004016110c390615af4565b6000838152600b602081905260409091200154156126065760405162461bcd60e51b815260206004820152603860248201527f43616e206e6f74206d6f64696679206861736865732067656e6572617465642060448201527f6166746572206120746f6b656e206973206d696e7465642e000000000000000060648201526084016110c3565b60648211158015612615575060015b6126a15760405162461bcd60e51b815260206004820152605160248201527f4861736865732067656e657261746564206d757374206265206120706f73697460448201527f69766520696e746567657220616e64206d61782068617368657320706572206960648201527006e766f636174696f6e206172652031303607c1b608482015260a4016110c3565b506000918252600b6020526040909120600f0155565b33600090815260156020526040902054829060ff16806126f057506000818152600b60205260409020600501546001600160a01b031633145b61270c5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060110155565b6014546001600160a01b0316331461274c5760405162461bcd60e51b81526004016110c390615c49565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600b60205260409020601001548290610100900460ff16156127a75760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff16806127e057506000818152600b60205260409020600501546001600160a01b031633145b6127fc5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b60208190526040909120015483116128835760405162461bcd60e51b815260206004820152603d60248201527f596f75206d75737420736574206d617820696e766f636174696f6e732067726560448201527f61746572207468616e2063757272656e7420696e766f636174696f6e7300000060648201526084016110c3565b620f42408311156128d65760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f742065786365656420312c3030302c30303000000000000000000060448201526064016110c3565b50506000918252600b6020526040909120600c0155565b33600090815260156020526040902054819060ff168061292657506000818152600b60205260409020600501546001600160a01b031633145b6129425760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805463ff00000019811663010000009182900460ff1615909102179055565b3360009081526015602052604090205460ff166129a25760405162461bcd60e51b81526004016110c390615af4565b6000818152600b60205260409020601001548190610100900460ff16156129db5760405162461bcd60e51b81526004016110c390615c6d565b506000908152600b60205260409020601001805461ff001916610100179055565b6000828152600b60209081526040808320848452600d019091529020805460609190612a2790615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5390615dab565b8015612aa05780601f10612a7557610100808354040283529160200191612aa0565b820191906000526020600020905b815481529060010190602001808311612a8357829003601f168201915b5050505050905092915050565b6060806060806060600b60008781526020019081526020016000206000018054612ad690615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0290615dab565b8015612b4f5780601f10612b2457610100808354040283529160200191612b4f565b820191906000526020600020905b815481529060010190602001808311612b3257829003601f168201915b5050506000898152600b60205260409020600101805493985092612b7592509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba190615dab565b8015612bee5780601f10612bc357610100808354040283529160200191612bee565b820191906000526020600020905b815481529060010190602001808311612bd157829003601f168201915b5050506000898152600b60205260409020600201805493975092612c1492509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4090615dab565b8015612c8d5780601f10612c6257610100808354040283529160200191612c8d565b820191906000526020600020905b815481529060010190602001808311612c7057829003601f168201915b5050506000898152600b60205260409020600301805493965092612cb392509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdf90615dab565b8015612d2c5780601f10612d0157610100808354040283529160200191612d2c565b820191906000526020600020905b815481529060010190602001808311612d0f57829003601f168201915b5050506000898152600b60205260409020600401805493955092612d5292509050615dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7e90615dab565b8015612dcb5780601f10612da057610100808354040283529160200191612dcb565b820191906000526020600020905b815481529060010190602001808311612dae57829003601f168201915b5050505050905091939590929450565b606060018054610fcb90615dab565b33600090815260156020526040902054829060ff1680612e2357506000818152600b60205260409020600501546001600160a01b031633145b612e3f5760405162461bcd60e51b81526004016110c390615b95565b506000918252600b602052604090912060090155565b3360009081526015602052604090205460ff16612e845760405162461bcd60e51b81526004016110c390615af4565b6000828152600b6020526040902060100154600160201b900460ff16612ebc5760405162461bcd60e51b81526004016110c390615c12565b60005b6000828152601060205260409020548110156111f9576001600b60008581526020019081526020016000206016016000601060008681526020019081526020016000208481548110612f1357612f13615e67565b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612f4e90615de0565b915050612ebf565b33600090815260156020526040902054819060ff1680612f8f57506000818152600b60205260409020600501546001600160a01b031633145b612fab5760405162461bcd60e51b81526004016110c390615b95565b506000908152600b60205260409020601001805462ff0000198116620100009182900460ff1615909102179055565b6014546001600160a01b031633146130045760405162461bcd60e51b81526004016110c390615c49565b60328111156130425760405162461bcd60e51b815260206004820152600a6024820152694d6178206f662035302560b01b60448201526064016110c3565b600d55565b6001600160a01b0382163314156130a05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016110c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260156020526040902054829060ff168061314557506000818152600b60205260409020600501546001600160a01b031633145b6131615760405162461bcd60e51b81526004016110c390615b95565b6000838152600b6020908152604090912083516115a492600290920191850190615219565b3360009081526015602052604090205460ff166131b55760405162461bcd60e51b81526004016110c390615af4565b6016546000818152600b602090815260409091206005810180546001600160a01b03191633179055600981018b905560108101805462ff0000191662010000179055600c81018a9055885161320c928a0190615219565b506000818152600b60209081526040909120875161323292600290920191890190615219565b506000818152600b60209081526040909120865161325892600190920191880190615219565b506000818152600b60209081526040909120855161327e92600390920191870190615219565b506000818152600b60205260409020601181018490556001600f82018190556010909101805464ff000000001916600160201b851515021790556016546132c49161437a565b601655505050505050505050565b6000828152600b60205260409020601001548290610100900460ff161561330b5760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061334457506000818152600b60205260409020600501546001600160a01b031633145b6133605760405162461bcd60e51b81526004016110c390615b95565b6000848152600b60209081526040808320600e8101548452600d018252909120845161338e92860190615219565b506000848152600b60205260409020600e01546133ac90600161437a565b6000948552600b6020526040909420600e0193909355505050565b6000838152600b60205260409020601001548390610100900460ff16156134005760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054849060ff168061343957506000818152600b60205260409020600501546001600160a01b031633145b6134555760405162461bcd60e51b81526004016110c390615b95565b6000858152600b60205260409020600e015484106134ad5760405162461bcd60e51b81526020600482015260156024820152747363726970744964206f7574206f662072616e676560581b60448201526064016110c3565b6000858152600b60209081526040808320878452600d01825290912084516134d792860190615219565b505050505050565b6000828152600b60205260409020601001548290610100900460ff16156135185760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054839060ff168061355157506000818152600b60205260409020600501546001600160a01b031633145b61356d5760405162461bcd60e51b81526004016110c390615b95565b6000848152600b6020908152604090912084516112ab92600190920191860190615219565b3360009081526015602052604090205460ff166135c15760405162461bcd60e51b81526004016110c390615af4565b6000838152600b6020526040902060100154600160201b900460ff166135f95760405162461bcd60e51b81526004016110c390615c12565b60005b818110156115a4576000848152600b6020526040812060019160169091019085858581811061362d5761362d615e67565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061366490615de0565b9150506135fc565b6136763383614033565b6136925760405162461bcd60e51b81526004016110c390615ccc565b6115a4848484846147bc565b6000818152601060209081526040918290208054835181840281018401909452808452606093928301828280156113ed57602002820191906000526020600020908154815260200190600101908083116113d95750505050509050919050565b33600090815260156020526040902054829060ff168061373757506000818152600b60205260409020600501546001600160a01b031633145b6137535760405162461bcd60e51b81526004016110c390615b95565b60648211156137925760405162461bcd60e51b815260206004820152600b60248201526a4d6178206f66203130302560a81b60448201526064016110c3565b506000918252600b602052604090912060080155565b6060816137cc816000908152600260205260409020546001600160a01b0316151590565b6138185760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f7420657869737400000000000000000060448201526064016110c3565b6000838152600f60209081526040808320548352600b9091529020600a0161383f846147ef565b60405160200161385092919061594c565b60405160208183030381529060405291505b50919050565b6014546001600160a01b031633146138925760405162461bcd60e51b81526004016110c390615c49565b6001600160a01b03166000908152601560205260409020805460ff19166001179055565b3360009081526015602052604090205460ff166138e55760405162461bcd60e51b81526004016110c390615af4565b6000908152600b60205260409020601001805460ff19811660ff90911615179055565b333b63ffffffff161561395d5760405162461bcd60e51b815260206004820152601f60248201527f43616e277420636c61696d2066726f6d206120636f6e747261637420736d680060448201526064016110c3565b6000828152600b6020526040902060100154600160201b900460ff166139c55760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636c61696d61626c652070726f6a65637400000000000000000060448201526064016110c3565b6139cf3382614033565b613a1b5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656460448201526064016110c3565b6000828152600b6020908152604080832084845260160190915290205460ff16613aa35760405162461bcd60e51b815260206004820152603360248201527f546f6b656e206973206e6f7420636c61696d61626c652c206f722068617320616044820152721b1c9958591e481899595b8818db185a5b5959606a1b60648201526084016110c3565b6000828152600b602052604090206010015460ff1680613adc57506000828152600b60205260409020600501546001600160a01b031633145b613b285760405162461bcd60e51b815260206004820181905260248201527f50726f6a656374206d75737420657869737420616e642062652061637469766560448201526064016110c3565b6000828152600b602052604090206010015462010000900460ff161580613b6857506000828152600b60205260409020600501546001600160a01b031633145b613bac5760405162461bcd60e51b8152602060048201526015602482015274283ab931b430b9b2b99030b932903830bab9b2b21760591b60448201526064016110c3565b6000828152600b602090815260408083208484526016019091529020805460ff191690556111f9338361438d565b6000818152600b60205260409020601001548190610100900460ff1615613c135760405162461bcd60e51b81526004016110c390615c6d565b33600090815260156020526040902054829060ff1680613c4c57506000818152600b60205260409020600501546001600160a01b031633145b613c685760405162461bcd60e51b81526004016110c390615b95565b6000838152600b60205260409020600e0154613cc65760405162461bcd60e51b815260206004820152601e60248201527f746865726520617265206e6f207363726970747320746f2072656d6f7665000060448201526064016110c3565b6000838152600b60205260408120600e810154600d9091019190613cec90600190615d68565b81526020019081526020016000206000613d0691906152bb565b6000838152600b60205260409020600e0154613d239060016148ed565b6000938452600b6020526040909320600e01929092555050565b33600090815260156020526040902054839060ff1680613d7657506000818152600b60205260409020600501546001600160a01b031633145b613d925760405162461bcd60e51b81526004016110c390615b95565b6064821115613dd15760405162461bcd60e51b815260206004820152600b60248201526a4d6178206f66203130302560a81b60448201526064016110c3565b506000928352600b60205260409092206006810180546001600160a01b0319166001600160a01b03939093169290921790915560070155565b3360009081526015602052604090205460ff16613e395760405162461bcd60e51b81526004016110c390615af4565b60005b818110156115a4576000838383818110613e5857613e58615e67565b9050602002016020810190613e6d91906153ed565b90506001600160a01b038116613e955760405162461bcd60e51b81526004016110c390615b1d565b6000858152600b602090815260408083206001600160a01b0390941683526012909301905220805460ff1916905580613ecd81615de0565b915050613e3c565b600a546001600160a01b03163314613eff5760405162461bcd60e51b81526004016110c390615c97565b6001600160a01b038116613f255760405162461bcd60e51b81526004016110c390615bcc565b601480546001600160a01b0383166001600160a01b031991821681179092556000828152601560205260409020805460ff19166001179055600c80549091169091179055613f72816148f9565b50565b60006001600160e01b031982166380ac58cd60e01b1480613fa657506001600160e01b03198216635b5e139f60e01b145b80610fb657506301ffc9a760e01b6001600160e01b0319831614610fb6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613ffa8261231f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166140ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016110c3565b60006140b78361231f565b9050806001600160a01b0316846001600160a01b031614806140f25750836001600160a01b03166140e78461104e565b6001600160a01b0316145b8061412257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661413d8261231f565b6001600160a01b0316146141a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016110c3565b6001600160a01b0382166142075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016110c3565b6142128383836149a5565b61421d600082613fc5565b6001600160a01b0383166000908152600360205260408120805460019290614246908490615d68565b90915550506001600160a01b0382166000908152600360205260408120805460019290614274908490615d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006142e18383614a5d565b600e546001600160a01b039182169116149392505050565b6000808585858560405160200161431394939291906158ea565b60408051808303601f1901815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000082850152603c8085019190915282518085039091018152605c90930190915281519101209695505050505050565b60006143868284615d1d565b9392505050565b6000818152600b602081905260408220015481906143ae620f424085615d49565b6143b89190615d1d565b6000848152600b602081815260408084208301548585526013835290842081905592879052529091506143ec90600161437a565b6000848152600b60208190526040822001919091555b6000848152600b60205260409020600f01548110156144b8576000848152600b6020819052604082200154614437438461437a565b60408051602081019390935282015233606090811b6bffffffffffffffffffffffff19169082015260740160408051601f1981840301815291815281516020928301206000868152601184528281208054600181018255908252848220018290559081526012909252902083905550806144b081615de0565b915050614402565b506144c38482614a81565b6000818152600f6020908152604080832086905585835260108252808320805460018101825590845282842001849055858352600b9182905291829020908101546009909101549151859284926001600160a01b038916927f94c792774c59479f7bd68442f3af3691c02123a5aabee8b6f9116d8af8aa66699261454e928252602082015260400190565b60405180910390a49392505050565b3415613f72576000818152600b60205260408120600901549061458034836148ed565b905080156145b757604051339082156108fc029083906000818181858888f193505050501580156145b5573d6000803e3d6000fd5b505b600d546000906145d2906145cc856064614a9f565b90614aab565b9050801561461657600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015614614573d6000803e3d6000fd5b505b600061462284836148ed565b6000868152600b602052604081206007015491925090156146af576000868152600b602052604090206007015461465e906145cc846064614a9f565b905080156146af576000868152600b60205260408082206006015490516001600160a01b039091169183156108fc02918491818181858888f193505050501580156146ad573d6000803e3d6000fd5b505b60006146bb83836148ed565b9050801561470c576000878152600b60205260408082206005015490516001600160a01b039091169183156108fc02918491818181858888f1935050505015801561470a573d6000803e3d6000fd5b505b50505050505050565b60006147208261231f565b905061472e816000846149a5565b614739600083613fc5565b6001600160a01b0381166000908152600360205260408120805460019290614762908490615d68565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6147c784848461412a565b6147d384848484614ab7565b6115a45760405162461bcd60e51b81526004016110c390615b43565b6060816148135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561483d578061482781615de0565b91506148369050600a83615d35565b9150614817565b60008167ffffffffffffffff81111561485857614858615e7d565b6040519080825280601f01601f191660200182016040528015614882576020820181803683370190505b5090505b841561412257614897600183615d68565b91506148a4600a86615dfb565b6148af906030615d1d565b60f81b8183815181106148c4576148c4615e67565b60200101906001600160f81b031916908160001a9053506148e6600a86615d35565b9450614886565b60006143868284615d68565b600a546001600160a01b031633146149235760405162461bcd60e51b81526004016110c390615c97565b6001600160a01b0381166149495760405162461bcd60e51b81526004016110c390615bcc565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316614a00576149fb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b614a23565b816001600160a01b0316836001600160a01b031614614a2357614a238382614bc1565b6001600160a01b038216614a3a576111f981614c5e565b826001600160a01b0316826001600160a01b0316146111f9576111f98282614d0d565b6000806000614a6c8585614d51565b91509150614a7981614dc1565b509392505050565b614a9b828260405180602001604052806000815250614f7c565b5050565b60006143868284615d35565b60006143868284615d49565b60006001600160a01b0384163b15614bb957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614afb9033908990889088906004016159f3565b602060405180830381600087803b158015614b1557600080fd5b505af1925050508015614b45575060408051601f3d908101601f19168201909252614b4291810190615587565b60015b614b9f573d808015614b73576040519150601f19603f3d011682016040523d82523d6000602084013e614b78565b606091505b508051614b975760405162461bcd60e51b81526004016110c390615b43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614122565b506001614122565b60006001614bce8461241d565b614bd89190615d68565b600083815260076020526040902054909150808214614c2b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614c7090600190615d68565b60008381526009602052604081205460088054939450909284908110614c9857614c98615e67565b906000526020600020015490508060088381548110614cb957614cb9615e67565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614cf157614cf1615e51565b6001900381819060005260206000200160009055905550505050565b6000614d188361241d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600080825160411415614d885760208301516040840151606085015160001a614d7c87828585614faf565b94509450505050614dba565b825160401415614db25760208301516040840151614da786838361509c565b935093505050614dba565b506000905060025b9250929050565b6000816004811115614dd557614dd5615e3b565b1415614dde5750565b6001816004811115614df257614df2615e3b565b1415614e405760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016110c3565b6002816004811115614e5457614e54615e3b565b1415614ea25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016110c3565b6003816004811115614eb657614eb6615e3b565b1415614f0f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016110c3565b6004816004811115614f2357614f23615e3b565b1415613f725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016110c3565b614f8683836150cb565b614f936000848484614ab7565b6111f95760405162461bcd60e51b81526004016110c390615b43565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614fe65750600090506003615093565b8460ff16601b14158015614ffe57508460ff16601c14155b1561500f5750600090506004615093565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015615063573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661508c57600060019250925050615093565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016150bd87828885614faf565b935093505050935093915050565b6001600160a01b0382166151215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016110c3565b6000818152600260205260409020546001600160a01b0316156151865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016110c3565b615192600083836149a5565b6001600160a01b03821660009081526003602052604081208054600192906151bb908490615d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461522590615dab565b90600052602060002090601f016020900481019282615247576000855561528d565b82601f1061526057805160ff191683800117855561528d565b8280016001018555821561528d579182015b8281111561528d578251825591602001919060010190615272565b506152999291506152f1565b5090565b5080546000825590600052602060002090810190613f7291906152f1565b5080546152c790615dab565b6000825580601f106152d7575050565b601f016020900490600052602060002090810190613f7291905b5b8082111561529957600081556001016152f2565b60008083601f84011261531857600080fd5b50813567ffffffffffffffff81111561533057600080fd5b6020830191508360208260051b8501011115614dba57600080fd5b8035801515811461535b57600080fd5b919050565b600082601f83011261537157600080fd5b813567ffffffffffffffff8082111561538c5761538c615e7d565b604051601f8301601f19908116603f011681019082821181831017156153b4576153b4615e7d565b816040528381528660208588010111156153cd57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156153ff57600080fd5b813561438681615e93565b6000806040838503121561541d57600080fd5b823561542881615e93565b9150602083013561543881615e93565b809150509250929050565b60008060006060848603121561545857600080fd5b833561546381615e93565b9250602084013561547381615e93565b929592945050506040919091013590565b6000806000806080858703121561549a57600080fd5b84356154a581615e93565b935060208501356154b581615e93565b925060408501359150606085013567ffffffffffffffff8111156154d857600080fd5b6154e487828801615360565b91505092959194509250565b6000806040838503121561550357600080fd5b823561550e81615e93565b915061551c6020840161534b565b90509250929050565b6000806040838503121561553857600080fd5b823561554381615e93565b946020939093013593505050565b60006020828403121561556357600080fd5b5035919050565b60006020828403121561557c57600080fd5b813561438681615ea8565b60006020828403121561559957600080fd5b815161438681615ea8565b600080604083850312156155b757600080fd5b82359150602083013561543881615e93565b6000806000606084860312156155de57600080fd5b83359250602084013561547381615e93565b60008060006040848603121561560557600080fd5b83359250602084013567ffffffffffffffff81111561562357600080fd5b61562f86828701615306565b9497909650939450505050565b600080600080600060a0868803121561565457600080fd5b8535945060208601359350604086013567ffffffffffffffff8082111561567a57600080fd5b61568689838a01615360565b9450606088013591508082111561569c57600080fd5b506156a988828901615360565b95989497509295608001359392505050565b600080604083850312156156ce57600080fd5b82359150602083013567ffffffffffffffff8111156156ec57600080fd5b6156f885828601615360565b9150509250929050565b6000806040838503121561571557600080fd5b50508035926020909101359150565b6000806000806060858703121561573a57600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561575f57600080fd5b61576b87828801615306565b95989497509550505050565b60008060006060848603121561578c57600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156157b157600080fd5b6157bd86828701615360565b9150509250925092565b600080600080600080600080610100898b0312156157e457600080fd5b8835975060208901359650604089013567ffffffffffffffff8082111561580a57600080fd5b6158168c838d01615360565b975060608b013591508082111561582c57600080fd5b6158388c838d01615360565b965060808b013591508082111561584e57600080fd5b61585a8c838d01615360565b955060a08b013591508082111561587057600080fd5b5061587d8b828c01615360565b93505060c0890135915061589360e08a0161534b565b90509295985092959890939650565b600081518084526158ba816020860160208601615d7f565b601f01601f19169290920160200192915050565b600081516158e0818560208601615d7f565b9290920192915050565b6bffffffffffffffffffffffff198560601b16815283601482015282603482015260008251615920816054850160208701615d7f565b9190910160540195945050505050565b60008251615942818460208701615d7f565b9190910192915050565b600080845481600182811c91508083168061596857607f831692505b602080841082141561598857634e487b7160e01b86526022600452602486fd5b81801561599c57600181146159ad576159da565b60ff198616895284890196506159da565b60008b81526020902060005b868110156159d25781548b8201529085019083016159b9565b505084890196505b5050505050506159ea81856158ce565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615a26908301846158a2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a6857835183529284019291840191600101615a4c565b50909695505050505050565b60208152600061438660208301846158a2565b60a081526000615a9a60a08301886158a2565b8281036020840152615aac81886158a2565b90508281036040840152615ac081876158a2565b90508281036060840152615ad481866158a2565b90508281036080840152615ae881856158a2565b98975050505050505050565b6020808252600f908201526e13db9b1e48185d5d1a1bdc9a5e9959608a1b604082015260600190565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526019908201527f4f6e6c7920617274697374206f7220617574686f72697a656400000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526018908201527f50726f6a656374206973206e6f7420636c61696d61626c650000000000000000604082015260600190565b6020808252600a908201526927b7363c9030b236b4b760b11b604082015260600190565b60208082526010908201526f13db9b1e481a59881d5b9b1bd8dad95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115615d3057615d30615e0f565b500190565b600082615d4457615d44615e25565b500490565b6000816000190483118215151615615d6357615d63615e0f565b500290565b600082821015615d7a57615d7a615e0f565b500390565b60005b83811015615d9a578181015183820152602001615d82565b838111156115a45750506000910152565b600181811c90821680615dbf57607f821691505b6020821081141561386257634e487b7160e01b600052602260045260246000fd5b6000600019821415615df457615df4615e0f565b5060010190565b600082615e0a57615e0a615e25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114613f7257600080fd5b6001600160e01b031981168114613f7257600080fdfea264697066735822122010c865e33e0a430cc102fa18467926723ac4b4abd348441a3be08f3162fffc3764736f6c63430008070033

Deployed Bytecode Sourcemap

58812:23115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39330:224;;;;;;;;;;-1:-1:-1;39330:224:0;;;;;:::i;:::-;;:::i;:::-;;;17470:14:1;;17463:22;17445:41;;17433:2;17418:18;39330:224:0;;;;;;;;26406:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27965:221::-;;;;;;;;;;-1:-1:-1;27965:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;13904:32:1;;;13886:51;;13874:2;13859:18;27965:221:0;13740:203:1;27488:411:0;;;;;;;;;;-1:-1:-1;27488:411:0;;;;;:::i;:::-;;:::i;:::-;;72829:203;;;;;;;;;;-1:-1:-1;72829:203:0;;;;;:::i;:::-;;:::i;39970:113::-;;;;;;;;;;-1:-1:-1;40058:10:0;:17;39970:113;;;40524:25:1;;;40512:2;40497:18;39970:113:0;40378:177:1;60511:53:0;;;;;;;;;;-1:-1:-1;60511:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;60382:37;;;;;;;;;;;;;;;;28855:339;;;;;;;;;;-1:-1:-1;28855:339:0;;;;;:::i;:::-;;:::i;74606:215::-;;;;;;;;;;-1:-1:-1;74606:215:0;;;;;:::i;:::-;;:::i;79367:129::-;;;;;;;;;;-1:-1:-1;79367:129:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79043:166::-;;;;;;;;;;-1:-1:-1;79043:166:0;;;;;:::i;:::-;;:::i;39638:256::-;;;;;;;;;;-1:-1:-1;39638:256:0;;;;;:::i;:::-;;:::i;74408:190::-;;;;;;;;;;-1:-1:-1;74408:190:0;;;;;:::i;:::-;;:::i;62715:346::-;;;;;;;;;;-1:-1:-1;62715:346:0;;;;;:::i;:::-;;:::i;76758:189::-;;;;;;;;;;-1:-1:-1;76758:189:0;;;;;:::i;:::-;;:::i;60338:37::-;;;;;;;;;;-1:-1:-1;60338:37:0;;;;-1:-1:-1;;;;;60338:37:0;;;64451:2037;;;;;;:::i;:::-;;:::i;29265:185::-;;;;;;;;;;-1:-1:-1;29265:185:0;;;;;:::i;:::-;;:::i;80245:927::-;;;;;;;;;;-1:-1:-1;80245:927:0;;;;;:::i;:::-;;:::i;69232:110::-;;;;;;;;;;-1:-1:-1;69232:110:0;;;;;:::i;:::-;;:::i;78527:337::-;;;;;;;;;;-1:-1:-1;78527:337:0;;;;;:::i;:::-;78595:19;78683:20;;;:8;:20;;;;;:32;;;;78735:27;;;;78782;;;;;78683:32;;78782:27;;;;;;;78829;;;;;78527:337;;;;;41032:25:1;;;41088:2;41073:18;;41066:34;;;;41143:14;;41136:22;41116:18;;;41109:50;;;;41202:14;41195:22;41190:2;41175:18;;41168:50;41019:3;41004:19;78527:337:0;40813:411:1;70197:360:0;;;;;;;;;;-1:-1:-1;70197:360:0;;;;;:::i;:::-;70279:18;70371:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;70371:37:0;;;;;;:30;;;:37;;;;;;70434:39;;;:46;;;;;;70507:35;;;;:42;;;;;;;70371:37;;;;;70434:46;;70507:42;70197:360;;;;;17718:14:1;;17711:22;17693:41;;17765:2;17750:18;;17743:34;;;;17793:18;;;17786:34;17681:2;17666:18;70197:360:0;17497:329:1;71481:179:0;;;;;;;;;;-1:-1:-1;71481:179:0;;;;;:::i;:::-;;:::i;40160:233::-;;;;;;;;;;-1:-1:-1;40160:233:0;;;;;:::i;:::-;;:::i;76955:154::-;;;;;;;;;;-1:-1:-1;76955:154:0;;;;;:::i;:::-;;:::i;69350:496::-;;;;;;;;;;-1:-1:-1;69350:496:0;;;;;:::i;:::-;;:::i;26100:239::-;;;;;;;;;;-1:-1:-1;26100:239:0;;;;;:::i;:::-;;:::i;70886:200::-;;;;;;;;;;-1:-1:-1;70886:200:0;;;;;:::i;:::-;;:::i;25830:208::-;;;;;;;;;;-1:-1:-1;25830:208:0;;;;;:::i;:::-;;:::i;47217:148::-;;;;;;;;;;;;;:::i;75272:434::-;;;;;;;;;;-1:-1:-1;75272:434:0;;;;;:::i;:::-;;:::i;73271:202::-;;;;;;;;;;-1:-1:-1;73271:202:0;;;;;:::i;:::-;;:::i;68778:131::-;;;;;;;;;;-1:-1:-1;68778:131:0;;;;;:::i;:::-;;:::i;74829:435::-;;;;;;;;;;-1:-1:-1;74829:435:0;;;;;:::i;:::-;;:::i;71272:201::-;;;;;;;;;;-1:-1:-1;71272:201:0;;;;;:::i;:::-;;:::i;70569:151::-;;;;;;;;;;-1:-1:-1;70569:151:0;;;;;:::i;:::-;;:::i;77572:947::-;;;;;;;;;;-1:-1:-1;77572:947:0;;;;;:::i;:::-;77639:21;77900:20;;;:8;:20;;;;;;;;:34;;;;77966:39;;;;78030:32;;;;78090:35;;;;78145:27;;;;78201:36;;;;78276:46;;;;78351:36;;;;;-1:-1:-1;;;;;77900:34:0;;;;78030:32;;78090:35;;78145:27;;;;;78201:36;;;;;78276:46;78418:40;;;;;;-1:-1:-1;;;78481:30:0;;;;;77572:947;;;;;-1:-1:-1;;;;;15554:15:1;;;15536:34;;15601:2;15586:18;;15579:34;;;;15629:18;;15622:34;;;;15687:2;15672:18;;15665:34;;;;15743:14;;15736:22;15730:3;15715:19;;15708:51;15796:15;;15516:3;15775:19;;15768:44;15843:3;15828:19;;15821:35;;;;15900:14;;15893:22;15887:3;15872:19;;15865:51;15947:3;15932:19;;15925:35;;;;16004:14;;15997:22;15991:3;15976:19;;15969:51;15485:3;15470:19;77572:947:0;15117:909:1;78872:163:0;;;;;;;;;;-1:-1:-1;78872:163:0;;;;;:::i;:::-;;:::i;46566:87::-;;;;;;;;;;-1:-1:-1;46639:6:0;;-1:-1:-1;;;;;46639:6:0;46566:87;;77117:447;;;;;;;;;;-1:-1:-1;77117:447:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;26575:104::-;;;;;;;;;;;;;:::i;72607:214::-;;;;;;;;;;-1:-1:-1;72607:214:0;;;;;:::i;:::-;;:::i;61970:385::-;;;;;;;;;;-1:-1:-1;61970:385:0;;;;;:::i;:::-;;:::i;71094:170::-;;;;;;;;;;-1:-1:-1;71094:170:0;;;;;:::i;:::-;;:::i;68917:193::-;;;;;;;;;;-1:-1:-1;68917:193:0;;;;;:::i;:::-;;:::i;28258:295::-;;;;;;;;;;-1:-1:-1;28258:295:0;;;;;:::i;:::-;;:::i;74194:206::-;;;;;;;;;;-1:-1:-1;74194:206:0;;;;;:::i;:::-;;:::i;79708:529::-;;;;;;;;;;-1:-1:-1;79708:529:0;;;;;:::i;:::-;79771:21;79914:28;;;:18;:28;;;;;;;;;79905:38;;:8;:38;;;;;:52;;;;79986:54;;;;80079:64;;;;80171:58;;;;;-1:-1:-1;;;;;79905:52:0;;;;79986:54;;;;;80079:64;79708:529;;;;;-1:-1:-1;;;;;14952:15:1;;;14934:34;;15004:15;;;;14999:2;14984:18;;14977:43;15036:18;;;15029:34;15094:2;15079:18;;15072:34;14883:3;14868:19;79708:529:0;14665:447:1;71668:931:0;;;;;;;;;;-1:-1:-1;71668:931:0;;;;;:::i;:::-;;:::i;75714:314::-;;;;;;;;;;-1:-1:-1;75714:314:0;;;;;:::i;:::-;;:::i;76036:317::-;;;;;;;;;;-1:-1:-1;76036:317:0;;;;;:::i;:::-;;:::i;73040:223::-;;;;;;;;;;-1:-1:-1;73040:223:0;;;;;:::i;:::-;;:::i;62363:340::-;;;;;;;;;;-1:-1:-1;62363:340:0;;;;;:::i;:::-;;:::i;29521:328::-;;;;;;;;;;-1:-1:-1;29521:328:0;;;;;:::i;:::-;;:::i;79217:142::-;;;;;;;;;;-1:-1:-1;79217:142:0;;;;;:::i;:::-;;:::i;60428:74::-;;;;;;;;;;-1:-1:-1;60428:74:0;;;;-1:-1:-1;;;;;60428:74:0;;;73893:293;;;;;;;;;;-1:-1:-1;73893:293:0;;;;;:::i;:::-;;:::i;81180:249::-;;;;;;;;;;-1:-1:-1;81180:249:0;;;;;:::i;:::-;;:::i;69118:106::-;;;;;;;;;;-1:-1:-1;69118:106:0;;;;;:::i;:::-;;:::i;70728:150::-;;;;;;;;;;-1:-1:-1;70728:150:0;;;;;:::i;:::-;;:::i;63069:834::-;;;;;;;;;;-1:-1:-1;63069:834:0;;;;;:::i;:::-;;:::i;76361:389::-;;;;;;;;;;-1:-1:-1;76361:389:0;;;;;:::i;:::-;;:::i;73481:404::-;;;;;;;;;;-1:-1:-1;73481:404:0;;;;;:::i;:::-;;:::i;60904:28::-;;;;;;;;;;;;;;;;28624:164;;;;;;;;;;-1:-1:-1;28624:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28745:25:0;;;28721:4;28745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28624:164;79508:192;;;;;;;;;;-1:-1:-1;79508:192:0;;;;;:::i;:::-;79603:16;79645:20;;;:8;:20;;;;;;;;:47;;;:37;;;;:47;;;;;;;;79508:192;69854:335;;;;;;;;;;-1:-1:-1;69854:335:0;;;;;:::i;:::-;;:::i;81437:319::-;;;;;;;;;;-1:-1:-1;81437:319:0;;;;;:::i;:::-;;:::i;60697:48::-;;;;;;;;;;-1:-1:-1;60697:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;60824:20;;;;;;;;;;-1:-1:-1;60824:20:0;;;;-1:-1:-1;;;;;60824:20:0;;;60851:44;;;;;;;;;;-1:-1:-1;60851:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39330:224;39432:4;-1:-1:-1;;;;;;39456:50:0;;-1:-1:-1;;;39456:50:0;;:90;;;39510:36;39534:11;39510:23;:36::i;:::-;39449:97;39330:224;-1:-1:-1;;39330:224:0:o;26406:100::-;26460:13;26493:5;26486:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26406:100;:::o;27965:221::-;28041:7;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;28061:73;;;;-1:-1:-1;;;28061:73:0;;34114:2:1;28061:73:0;;;34096:21:1;34153:2;34133:18;;;34126:30;34192:34;34172:18;;;34165:62;-1:-1:-1;;;34243:18:1;;;34236:42;34295:19;;28061:73:0;;;;;;;;;-1:-1:-1;28154:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28154:24:0;;27965:221::o;27488:411::-;27569:13;27585:23;27600:7;27585:14;:23::i;:::-;27569:39;;27633:5;-1:-1:-1;;;;;27627:11:0;:2;-1:-1:-1;;;;;27627:11:0;;;27619:57;;;;-1:-1:-1;;;27619:57:0;;35657:2:1;27619:57:0;;;35639:21:1;35696:2;35676:18;;;35669:30;35735:34;35715:18;;;35708:62;-1:-1:-1;;;35786:18:1;;;35779:31;35827:19;;27619:57:0;35455:397:1;27619:57:0;717:10;-1:-1:-1;;;;;27711:21:0;;;;:62;;-1:-1:-1;27736:37:0;27753:5;717:10;28624:164;:::i;27736:37::-;27689:168;;;;-1:-1:-1;;;27689:168:0;;31323:2:1;27689:168:0;;;31305:21:1;31362:2;31342:18;;;31335:30;31401:34;31381:18;;;31374:62;31472:26;31452:18;;;31445:54;31516:19;;27689:168:0;31121:420:1;27689:168:0;27870:21;27879:2;27883:7;27870:8;:21::i;:::-;27558:341;27488:411;;:::o;72829:203::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;72952:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;72984:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;:40;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;;61198:1:::1;72829:203:::0;;;:::o;28855:339::-;29050:41;717:10;29069:12;29083:7;29050:18;:41::i;:::-;29042:103;;;;-1:-1:-1;;;29042:103:0;;;;;;;:::i;:::-;29158:28;29168:4;29174:2;29178:7;29158:9;:28::i;74606:215::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;74735:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;74767:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;:46;;::::2;::::0;:28:::2;::::0;;::::2;::::0;:46;::::2;::::0;::::2;:::i;79367:129::-:0;79463:25;;;;:15;:25;;;;;;;;;79456:32;;;;;;;;;;;;;;;;;79428:16;;79456:32;;;79463:25;79456:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79367:129;;;:::o;79043:166::-;79166:20;;;;:8;:20;;;;;:35;;79149:52;;79108:28;;79166:35;79149:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79149:52:0;;79043:166;-1:-1:-1;;;;;;79043:166:0:o;39638:256::-;39735:7;39771:23;39788:5;39771:16;:23::i;:::-;39763:5;:31;39755:87;;;;-1:-1:-1;;;39755:87:0;;22795:2:1;39755:87:0;;;22777:21:1;22834:2;22814:18;;;22807:30;22873:34;22853:18;;;22846:62;-1:-1:-1;;;22924:18:1;;;22917:41;22975:19;;39755:87:0;22593:407:1;39755:87:0;-1:-1:-1;;;;;;39860:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39638:256::o;74408:190::-;61669:10;61656:24;;;;:12;:24;;;;;;74512:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;74544:20:::1;::::0;;;:8:::1;:20;::::0;;;;;;;:46;;::::1;::::0;:28:::1;::::0;;::::1;::::0;:46;::::1;::::0;::::1;:::i;:::-;;74408:190:::0;;;:::o;62715:346::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;62847:20:::1;::::0;;;:8:::1;:20;::::0;;;;:30:::1;;::::0;-1:-1:-1;;;62847:30:0;::::1;;;62839:67;;;;-1:-1:-1::0;;;62839:67:0::1;;;;;;;:::i;:::-;62922:9;62917:137;62937:22:::0;;::::1;62917:137;;;63037:5;62981:20:::0;;;:8:::1;:20;::::0;;;;:37:::1;;63037:5:::0;63019:11;;63031:1;63019:14;;::::1;;;;;:::i;:::-;;;;;;;62981:53;;;;;;;;;;;;:61;;;;;;;;;;;;;;;;;;62961:3;;;;;:::i;:::-;;;;62917:137;;76758:189:::0;61669:10;61656:24;;;;:12;:24;;;;;;76858:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;76890:20:::1;::::0;;;:8:::1;:20;::::0;;;;;;;:49;;::::1;::::0;:35:::1;::::0;;::::1;::::0;:49;::::1;::::0;::::1;:::i;64451:2037::-:0;64616:10;81874:18;81909:9;;;64595:67;;;;-1:-1:-1;;;64595:67:0;;40221:2:1;64595:67:0;;;40203:21:1;40260:2;40240:18;;;40233:30;40299:32;40279:18;;;40272:60;40349:18;;64595:67:0;40019:354:1;64595:67:0;64681:35;64700:4;64706:9;64681:18;:35::i;:::-;64673:70;;;;-1:-1:-1;;;64673:70:0;;21325:2:1;64673:70:0;;;21307:21:1;21364:2;21344:18;;;21337:30;-1:-1:-1;;;21383:18:1;;;21376:52;21445:18;;64673:70:0;21123:346:1;64673:70:0;64763:8;:20;64772:10;64763:20;;;;;;;;;;;:31;;64795:5;64763:38;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;64762:39;64754:61;;;;-1:-1:-1;;;64754:61:0;;36821:2:1;64754:61:0;;;36803:21:1;36860:1;36840:18;;;36833:29;-1:-1:-1;;;36878:18:1;;;36871:39;36927:18;;64754:61:0;36619:332:1;64754:61:0;64899:4;64834:61;64850:10;64862;64874:13;64889:5;64834:15;:61::i;:::-;:69;64826:91;;;;-1:-1:-1;;;64826:91:0;;30986:2:1;64826:91:0;;;30968:21:1;31025:1;31005:18;;;30998:29;-1:-1:-1;;;31043:18:1;;;31036:39;31092:18;;64826:91:0;30784:332:1;64826:91:0;64954:1;64938:13;:17;64930:63;;;;-1:-1:-1;;;64930:63:0;;37880:2:1;64930:63:0;;;37862:21:1;37919:2;37899:18;;;37892:30;37958:34;37938:18;;;37931:62;-1:-1:-1;;;38009:18:1;;;38002:31;38050:19;;64930:63:0;37678:397:1;64930:63:0;65029:20;;;;:8;:20;;;;;:36;;;65012:53;;;65004:106;;;;-1:-1:-1;;;65004:106:0;;21676:2:1;65004:106:0;;;21658:21:1;21715:2;21695:18;;;21688:30;21754:34;21734:18;;;21727:62;-1:-1:-1;;;21805:18:1;;;21798:38;21853:19;;65004:106:0;21474:404:1;65004:106:0;65162:20;;;;:8;:20;;;;;:35;;;65145:13;65129;40058:10;:17;;39970:113;65129:13;:29;;;;:::i;:::-;:68;;65121:148;;;;-1:-1:-1;;;65121:148:0;;25877:2:1;65121:148:0;;;25859:21:1;25916:2;25896:18;;;25889:30;25955:34;25935:18;;;25928:62;26026:34;26006:18;;;25999:62;-1:-1:-1;;;26077:19:1;;;26070:34;26121:19;;65121:148:0;25675:471:1;65121:148:0;65298:20;;;;:8;:20;;;;;:27;;;;;;:79;;-1:-1:-1;65343:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;65343:34:0;65329:10;:48;65298:79;65290:124;;;;-1:-1:-1;;;65290:124:0;;37158:2:1;65290:124:0;;;37140:21:1;;;37177:18;;;37170:30;37236:34;37216:18;;;37209:62;37288:18;;65290:124:0;36956:356:1;65290:124:0;65434:20;;;;:8;:20;;;;;:27;;;;;;;;65433:28;;:80;;-1:-1:-1;65479:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;65479:34:0;65465:10;:48;65433:80;65425:114;;;;-1:-1:-1;;;65425:114:0;;30636:2:1;65425:114:0;;;30618:21:1;30675:2;30655:18;;;30648:30;-1:-1:-1;;;30694:18:1;;;30687:51;30755:18;;65425:114:0;30434:345:1;65425:114:0;65567:20;;;;:8;:20;;;;;:30;;;-1:-1:-1;;;65567:30:0;;;;65566:31;65558:88;;;;-1:-1:-1;;;65558:88:0;;29878:2:1;65558:88:0;;;29860:21:1;29917:2;29897:18;;;29890:30;29956:34;29936:18;;;29929:62;-1:-1:-1;;;30007:18:1;;;30000:42;30059:19;;65558:88:0;29676:408:1;65558:88:0;65665:20;;;;:8;:20;;;;;:39;;;65724:9;;65665:55;;65707:13;;65665:55;:::i;:::-;:68;;65657:103;;;;-1:-1:-1;;;65657:103:0;;32569:2:1;65657:103:0;;;32551:21:1;32608:2;32588:18;;;32581:30;-1:-1:-1;;;32627:18:1;;;32620:52;32689:18;;65657:103:0;32367:346:1;65657:103:0;65777:20;;;;:8;:20;;;;;:40;;;;;;;;65773:500;;;65842:20;;;;:8;:20;;;;;;;;65873:10;65842:42;;:30;;:42;;;;;;;;65834:98;;;;-1:-1:-1;;;65834:98:0;;20572:2:1;65834:98:0;;;20554:21:1;20611:2;20591:18;;;20584:30;20650:34;20630:18;;;20623:62;-1:-1:-1;;;20701:18:1;;;20694:41;20752:19;;65834:98:0;20370:407:1;65834:98:0;66029:20;;;;:8;:20;;;;;;;;66065:10;66029:47;;:35;;;:47;;;;;;65955:39;;;;:51;;;;;;;:70;;66011:13;65955:55;:70::i;:::-;:121;;65947:175;;;;-1:-1:-1;;;65947:175:0;;36059:2:1;65947:175:0;;;36041:21:1;36098:2;36078:18;;;36071:30;36137:34;36117:18;;;36110:62;-1:-1:-1;;;36188:18:1;;;36181:39;36237:19;;65947:175:0;35857:405:1;65947:175:0;66191:20;;;;:8;:20;;;;;;;;66231:10;66191:51;;:39;;:51;;;;;;:70;;66247:13;66191:55;:70::i;:::-;66137:20;;;;:8;:20;;;;;;;;66177:10;66137:51;;:39;;:51;;;;;:124;65773:500;66290:9;66285:105;66309:13;66305:1;:17;66285:105;;;66344:34;66355:10;66367;66344;:34::i;:::-;-1:-1:-1;66324:3:0;;;;:::i;:::-;;;;66285:105;;;;66400:23;66412:10;66400:11;:23::i;:::-;66477:4;66436:8;:20;66445:10;66436:20;;;;;;;;;;;:31;;66468:5;66436:38;;;;;;:::i;:::-;;;;;;;;;;;;;;:45;;;;;-1:-1:-1;;66436:45:0;;;;;;;;;-1:-1:-1;;;;;64451:2037:0:o;29265:185::-;29403:39;29420:4;29426:2;29430:7;29403:39;;;;;;;;;;;;:16;:39::i;80245:927::-;80303:42;717:10;80322:12;637:98;80303:42;80295:103;;;;-1:-1:-1;;;80295:103:0;;39804:2:1;80295:103:0;;;39786:21:1;39843:2;39823:18;;;39816:30;39882:34;39862:18;;;39855:62;-1:-1:-1;;;39933:18:1;;;39926:46;39989:19;;80295:103:0;39602:412:1;80295:103:0;80481:15;80499:28;;;:18;:28;;;;;;;;;80554:26;:36;;;;;;80642:28;;;:19;:28;;;;;80671:35;;:39;;80709:1;;80671:39;:::i;:::-;80642:69;;;;;;;;:::i;:::-;;;;;;;;;80601:19;:28;80621:7;80601:28;;;;;;;;;;;80630:8;80601:38;;;;;;;;:::i;:::-;;;;;;;;:110;;;;80791:8;80722:26;:66;80749:19;:28;80769:7;80749:28;;;;;;;;;;;80778:8;80749:38;;;;;;;;:::i;:::-;;;;;;;;;80722:66;;;;;;;;;;;:77;;;;80810:19;:28;80830:7;80810:28;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;80860:9;80855:140;80879:25;;;;:15;:25;;;;;:32;80875:36;;80855:140;;;80940:43;80954:25;;;:15;:25;;;;;:28;;80940:13;;:43;80954:25;80980:1;;80954:28;;;;;;:::i;:::-;;;;;;;;;80940:43;;;;;;;;;;;80933:50;;;80913:3;;;;;:::i;:::-;;;;80855:140;;;-1:-1:-1;81012:25:0;;;;:15;:25;;;;;81005:32;;;:::i;:::-;81055:28;;;;:18;:28;;;;;81048:35;81096:15;81074:8;81096:5;:15::i;:::-;81129:35;;81156:7;;81146:8;;81134:10;;81129:35;;;;;80284:888;;80245:927;:::o;69232:110::-;61420:5;;-1:-1:-1;;;;;61420:5:0;61406:10;:19;61398:42;;;;-1:-1:-1;;;61398:42:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69304:22:0::1;69329:5;69304:22:::0;;;:12:::1;:22;::::0;;;;:30;;-1:-1:-1;;69304:30:0::1;::::0;;69232:110::o;71481:179::-;61669:10;61656:24;;;;:12;:24;;;;;;71565:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;71622:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:30:::1;;::::0;;-1:-1:-1;;71588:64:0;::::1;-1:-1:-1::0;;;71622:30:0;;;::::1;;;71621:31;71588:64:::0;;::::1;;::::0;;71481:179::o;40160:233::-;40235:7;40271:30;40058:10;:17;;39970:113;40271:30;40263:5;:38;40255:95;;;;-1:-1:-1;;;40255:95:0;;39391:2:1;40255:95:0;;;39373:21:1;39430:2;39410:18;;;39403:30;39469:34;39449:18;;;39442:62;-1:-1:-1;;;39520:18:1;;;39513:42;39572:19;;40255:95:0;39189:408:1;40255:95:0;40368:10;40379:5;40368:17;;;;;;;;:::i;:::-;;;;;;;;;40361:24;;40160:233;;;:::o;76955:154::-;61420:5;;-1:-1:-1;;;;;61420:5:0;61406:10;:19;61398:42;;;;-1:-1:-1;;;61398:42:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;77034:18:0;::::1;77026:43;;;;-1:-1:-1::0;;;77026:43:0::1;;;;;;;:::i;:::-;77080:14;:21:::0;;-1:-1:-1;;;;;;77080:21:0::1;-1:-1:-1::0;;;;;77080:21:0;;;::::1;::::0;;;::::1;::::0;;76955:154::o;69350:496::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;69483:6:::1;69479:360;69493:16:::0;;::::1;69479:360;;;69530:13;69546:7;;69554:1;69546:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;69530:26:::0;-1:-1:-1;;;;;;69579:19:0;::::1;69571:44;;;;-1:-1:-1::0;;;69571:44:0::1;;;;;;;:::i;:::-;69639:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;69639:37:0;::::1;::::0;;:30:::1;;:37:::0;;;;;;::::1;;69638:38;69630:66;;;::::0;-1:-1:-1;;;69630:66:0;;29534:2:1;69630:66:0::1;::::0;::::1;29516:21:1::0;29573:2;29553:18;;;29546:30;-1:-1:-1;;;29592:18:1;;;29585:45;29647:18;;69630:66:0::1;29332:339:1::0;69630:66:0::1;69711:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;69711:37:0;;::::1;::::0;;;:30:::1;::::0;::::1;:37:::0;;;;;:44;;-1:-1:-1;;69711:44:0::1;69751:4;69711:44;::::0;;69770:42;;:35:::1;::::0;;::::1;:42:::0;;;:57;;;69511:3;::::1;::::0;::::1;:::i;:::-;;;;69479:360;;26100:239:::0;26172:7;26208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26208:16:0;26243:19;26235:73;;;;-1:-1:-1;;;26235:73:0;;32159:2:1;26235:73:0;;;32141:21:1;32198:2;32178:18;;;32171:30;32237:34;32217:18;;;32210:62;-1:-1:-1;;;32288:18:1;;;32281:39;32337:19;;26235:73:0;31957:405:1;70886:200:0;61669:10;61656:24;;;;:12;:24;;;;;;71004:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;71027:20:0::1;::::0;;;:8:::1;:20;::::0;;;;;:34:::1;;:51:::0;;-1:-1:-1;;;;;;71027:51:0::1;-1:-1:-1::0;;;;;71027:51:0;;::::1;::::0;;;::::1;::::0;;70886:200::o;25830:208::-;25902:7;-1:-1:-1;;;;;25930:19:0;;25922:74;;;;-1:-1:-1;;;25922:74:0;;31748:2:1;25922:74:0;;;31730:21:1;31787:2;31767:18;;;31760:30;31826:34;31806:18;;;31799:62;-1:-1:-1;;;31877:18:1;;;31870:40;31927:19;;25922:74:0;31546:406:1;25922:74:0;-1:-1:-1;;;;;;26014:16:0;;;;;:9;:16;;;;;;;25830:208::o;47217:148::-;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;47308:6:::1;::::0;47287:40:::1;::::0;47324:1:::1;::::0;-1:-1:-1;;;;;47308:6:0::1;::::0;47287:40:::1;::::0;47324:1;;47287:40:::1;47338:6;:19:::0;;-1:-1:-1;;;;;;47338:19:0::1;::::0;;47217:148::o;75272:434::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61526:10:::1;61513:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;61505:52;;;;-1:-1:-1::0;;;61505:52:0::1;;;;;;;:::i;:::-;75417:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;:32:::2;::::0;:37;75409:106:::2;;;::::0;-1:-1:-1;;;75409:106:0;;26353:2:1;75409:106:0::2;::::0;::::2;26335:21:1::0;26392:2;26372:18;;;26365:30;26431:34;26411:18;;;26404:62;26502:26;26482:18;;;26475:54;26546:19;;75409:106:0::2;26151:420:1::0;75409:106:0::2;75545:3;75534:7;:14;;:30;;;;-1:-1:-1::0;75552:12:0;75534:30:::2;75526:124;;;::::0;-1:-1:-1;;;75526:124:0;;28228:2:1;75526:124:0::2;::::0;::::2;28210:21:1::0;28267:2;28247:18;;;28240:30;28306:34;28286:18;;;28279:62;28377:34;28357:18;;;28350:62;-1:-1:-1;;;28428:19:1;;;28421:48;28486:19;;75526:124:0::2;28026:485:1::0;75526:124:0::2;-1:-1:-1::0;75661:20:0::2;::::0;;;:8:::2;:20;::::0;;;;;:27:::2;;:37:::0;75272:434::o;73271:202::-;61669:10;61656:24;;;;:12;:24;;;;;;73387:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;73410:20:0::1;::::0;;;:8:::1;:20;::::0;;;;;:36:::1;;:55:::0;73271:202::o;68778:131::-;61420:5;;-1:-1:-1;;;;;61420:5:0;61406:10;:19;61398:42;;;;-1:-1:-1;;;61398:42:0;;;;;;;:::i;:::-;68869:14:::1;:32:::0;;-1:-1:-1;;;;;;68869:32:0::1;-1:-1:-1::0;;;;;68869:32:0;;;::::1;::::0;;;::::1;::::0;;68778:131::o;74829:435::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;74959:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;75017:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;:32:::2;::::0;74999:50;::::2;74991:124;;;::::0;-1:-1:-1;;;74991:124:0;;33684:2:1;74991:124:0::2;::::0;::::2;33666:21:1::0;33723:2;33703:18;;;33696:30;33762:34;33742:18;;;33735:62;33833:31;33813:18;;;33806:59;33882:19;;74991:124:0::2;33482:425:1::0;74991:124:0::2;60277:9;75134:15;:30;;75126:66;;;::::0;-1:-1:-1;;;75126:66:0;;36469:2:1;75126:66:0::2;::::0;::::2;36451:21:1::0;36508:2;36488:18;;;36481:30;36547:25;36527:18;;;36520:53;36590:18;;75126:66:0::2;36267:347:1::0;75126:66:0::2;-1:-1:-1::0;;75203:20:0::2;::::0;;;:8:::2;:20;::::0;;;;;:35:::2;;:53:::0;74829:435::o;71272:201::-;61669:10;61656:24;;;;:12;:24;;;;;;71358:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;71425:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:40:::1;;::::0;;-1:-1:-1;;71381:84:0;::::1;71425:40:::0;;;;::::1;;;71424:41;71381:84:::0;;::::1;;::::0;;71272:201::o;70569:151::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;61139:20:::1;::::0;;;:8:::1;:20;::::0;;;;:27:::1;;::::0;:20;;:27:::1;::::0;::::1;;;61138:28;61130:57;;;;-1:-1:-1::0;;;61130:57:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;70678:20:0::2;::::0;;;:8:::2;:20;::::0;;;;:27:::2;;:34:::0;;-1:-1:-1;;70678:34:0::2;;;::::0;;70569:151::o;78872:163::-;78991:20;;;;:8;:20;;;;;;;;:36;;;:28;;:36;;;;;78984:43;;78959:13;;78991:36;78984:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78872:163;;;;:::o;77117:447::-;77182:25;77209:20;77231:25;77258:21;77281;77329:8;:20;77338:10;77329:20;;;;;;;;;;;:25;;77315:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;77374:20:0;;;;:8;:20;;;;;:27;;77365:36;;77315:39;;-1:-1:-1;77374:27:0;77365:36;;-1:-1:-1;77365:36:0;-1:-1:-1;77365:36:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;77426:20:0;;;;:8;:20;;;;;:32;;77412:46;;77365:36;;-1:-1:-1;77426:32:0;77412:46;;-1:-1:-1;77412:46:0;-1:-1:-1;77412:46:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;77479:20:0;;;;:8;:20;;;;;:28;;77469:38;;77412:46;;-1:-1:-1;77479:28:0;77469:38;;-1:-1:-1;77469:38:0;-1:-1:-1;77469:38:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;77528:20:0;;;;:8;:20;;;;;:28;;77518:38;;77469;;-1:-1:-1;77528:28:0;77518:38;;-1:-1:-1;77518:38:0;-1:-1:-1;77518:38:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77117:447;;;;;;;:::o;26575:104::-;26631:13;26664:7;26657:14;;;;;:::i;72607:214::-;61669:10;61656:24;;;;:12;:24;;;;;;72720:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;72752:20:0::1;::::0;;;:8:::1;:20;::::0;;;;;:39:::1;;:61:::0;72607:214::o;61970:385::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;62096:20:::1;::::0;;;:8:::1;:20;::::0;;;;:30:::1;;::::0;-1:-1:-1;;;62096:30:0;::::1;;;62088:67;;;;-1:-1:-1::0;;;62088:67:0::1;;;;;;;:::i;:::-;62171:9;62166:182;62190:34;::::0;;;:19:::1;:34;::::0;;;;:41;62186:45;::::1;62166:182;;;62332:4;62253:8;:20;62262:10;62253:20;;;;;;;;;;;:37;;:76;62291:19;:34;62311:13;62291:34;;;;;;;;;;;62326:1;62291:37;;;;;;;;:::i;:::-;;;;;;;;;62253:76;;;;;;;;;;;;:83;;;;;;;;;;;;;;;;;;62233:3;;;;;:::i;:::-;;;;62166:182;;71094:170:::0;61669:10;61656:24;;;;:12;:24;;;;;;71175:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;-1:-1:-1;71229:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:27:::1;;::::0;;-1:-1:-1;;71198:58:0;::::1;71229:27:::0;;;;::::1;;;71228:28;71198:58:::0;;::::1;;::::0;;71094:170::o;68917:193::-;61420:5;;-1:-1:-1;;;;;61420:5:0;61406:10;:19;61398:42;;;;-1:-1:-1;;;61398:42:0;;;;;;;:::i;:::-;69036:2:::1;69014:18;:24;;69006:47;;;::::0;-1:-1:-1;;;69006:47:0;;39052:2:1;69006:47:0::1;::::0;::::1;39034:21:1::0;39091:2;39071:18;;;39064:30;-1:-1:-1;;;39110:18:1;;;39103:40;39160:18;;69006:47:0::1;38850:334:1::0;69006:47:0::1;69064:17;:38:::0;68917:193::o;28258:295::-;-1:-1:-1;;;;;28361:24:0;;717:10;28361:24;;28353:62;;;;-1:-1:-1;;;28353:62:0;;27183:2:1;28353:62:0;;;27165:21:1;27222:2;27202:18;;;27195:30;27261:27;27241:18;;;27234:55;27306:18;;28353:62:0;26981:349:1;28353:62:0;717:10;28428:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28428:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28428:53:0;;;;;;;;;;28497:48;;17445:41:1;;;28428:42:0;;717:10;28497:48;;17418:18:1;28497:48:0;;;;;;;28258:295;;:::o;74194:206::-;61669:10;61656:24;;;;:12;:24;;;;;;74306:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;74338:20:::1;::::0;;;:8:::1;:20;::::0;;;;;;;:54;;::::1;::::0;:32:::1;::::0;;::::1;::::0;:54;::::1;::::0;::::1;:::i;71668:931::-:0;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;71935:13:::1;::::0;71915:17:::1;71959:19:::0;;;:8:::1;:19;::::0;;;;;;;:33:::1;::::0;::::1;:55:::0;;-1:-1:-1;;;;;;71959:55:0::1;72003:10;71959:55;::::0;;72025:38:::1;::::0;::::1;:60:::0;;;72096:26:::1;::::0;::::1;:31:::0;;-1:-1:-1;;72096:31:0::1;::::0;::::1;::::0;;72138:34:::1;::::0;::::1;:48:::0;;;72197:32;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72240:19:0::1;::::0;;;:8:::1;:19;::::0;;;;;;;:46;;::::1;::::0;:31:::1;::::0;;::::1;::::0;:46;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72297:19:0::1;::::0;;;:8:::1;:19;::::0;;;;;;;:40;;::::1;::::0;:26:::1;::::0;;::::1;::::0;:40;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72348:19:0::1;::::0;;;:8:::1;:19;::::0;;;;;;;:44;;::::1;::::0;:27:::1;::::0;;::::1;::::0;:44;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72403:19:0::1;::::0;;;:8:::1;:19;::::0;;;;:35:::1;::::0;::::1;:47:::0;;;72490:1:::1;72461:26;::::0;::::1;:30:::0;;;72502:29:::1;::::0;;::::1;:42:::0;;-1:-1:-1;;72502:42:0::1;-1:-1:-1::0;;;72502:42:0;::::1;;;;::::0;;72571:13:::1;::::0;:20:::1;::::0;:17:::1;:20::i;:::-;72555:13;:36:::0;-1:-1:-1;;;;;;;;;71668:931:0:o;75714:314::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;75831:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;75863:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;75892:32:::2;::::0;::::2;::::0;75863:62;;:28:::2;;:62:::0;;;;;:72;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;75981:20:0::2;::::0;;;:8:::2;:20;::::0;;;;:32:::2;;::::0;:39:::2;::::0;76018:1:::2;75981:36;:39::i;:::-;75946:20;::::0;;;:8:::2;:20;::::0;;;;;:32:::2;;:74:::0;;;;-1:-1:-1;;;75714:314:0:o;76036:317::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;76175:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;76227:20:::2;::::0;;;:8:::2;:20;::::0;;;;:32:::2;;::::0;76215:44;::::2;76207:78;;;::::0;-1:-1:-1;;;76207:78:0;;22445:2:1;76207:78:0::2;::::0;::::2;22427:21:1::0;22484:2;22464:18;;;22457:30;-1:-1:-1;;;22503:18:1;;;22496:51;22564:18;;76207:78:0::2;22243:345:1::0;76207:78:0::2;76296:20;::::0;;;:8:::2;:20;::::0;;;;;;;:39;;;:28:::2;;:39:::0;;;;;:49;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;;61198:1:::1;76036:317:::0;;;;:::o;73040:223::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;73175:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;73207:20:::2;::::0;;;:8:::2;:20;::::0;;;;;;;:48;;::::2;::::0;:27:::2;::::0;;::::2;::::0;:48;::::2;::::0;::::2;:::i;62363:340::-:0;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;62490:20:::1;::::0;;;:8:::1;:20;::::0;;;;:30:::1;;::::0;-1:-1:-1;;;62490:30:0;::::1;;;62482:67;;;;-1:-1:-1::0;;;62482:67:0::1;;;;;;;:::i;:::-;62565:9;62560:136;62580:22:::0;;::::1;62560:136;;;62624:20;::::0;;;:8:::1;:20;::::0;;;;62680:4:::1;::::0;62624:37:::1;::::0;;::::1;::::0;62662:11;;62674:1;62662:14;;::::1;;;;;:::i;:::-;;;;;;;62624:53;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;62604:3;;;;;:::i;:::-;;;;62560:136;;29521:328:::0;29696:41;717:10;29729:7;29696:18;:41::i;:::-;29688:103;;;;-1:-1:-1;;;29688:103:0;;;;;;;:::i;:::-;29802:39;29816:4;29822:2;29826:7;29835:5;29802:13;:39::i;79217:142::-;79320:31;;;;:19;:31;;;;;;;;;79313:38;;;;;;;;;;;;;;;;;79285:16;;79313:38;;;79320:31;79313:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79217:142;;;:::o;73893:293::-;61669:10;61656:24;;;;:12;:24;;;;;;74021:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;74085:3:::1;74061:20;:27;;74053:51;;;::::0;-1:-1:-1;;;74053:51:0;;20232:2:1;74053:51:0::1;::::0;::::1;20214:21:1::0;20271:2;20251:18;;;20244:30;-1:-1:-1;;;20290:18:1;;;20283:41;20341:18;;74053:51:0::1;20030:335:1::0;74053:51:0::1;-1:-1:-1::0;74115:20:0::1;::::0;;;:8:::1;:20;::::0;;;;;:40:::1;;:63:::0;73893:293::o;81180:249::-;81281:13;81262:8;61004:17;61012:8;31424:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;:30;;;31359:127;61004:17;60996:53;;;;-1:-1:-1;;;60996:53:0;;27537:2:1;60996:53:0;;;27519:21:1;27576:2;27556:18;;;27549:30;27615:25;27595:18;;;27588:53;27658:18;;60996:53:0;27335:347:1;60996:53:0;81338:38:::1;81347:28:::0;;;:18:::1;:28;::::0;;;;;;;;81338:38;;:8:::1;:38:::0;;;;;:53:::1;;81393:26;81366:8:::0;81393:16:::1;:26::i;:::-;81321:99;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81307:114;;61060:1;81180:249:::0;;;;:::o;69118:106::-;61420:5;;-1:-1:-1;;;;;61420:5:0;61406:10;:19;61398:42;;;;-1:-1:-1;;;61398:42:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69187:22:0::1;;::::0;;;:12:::1;:22;::::0;;;;:29;;-1:-1:-1;;69187:29:0::1;69212:4;69187:29;::::0;;69118:106::o;70728:150::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;70843:20:::1;::::0;;;:8:::1;:20;::::0;;;;:27:::1;;::::0;;-1:-1:-1;;70812:58:0;::::1;70843:27;::::0;;::::1;70842:28;70812:58;::::0;;70728:150::o;63069:834::-;63171:10;81874:18;81909:9;;;63150:68;;;;-1:-1:-1;;;63150:68:0;;25517:2:1;63150:68:0;;;25499:21:1;25556:2;25536:18;;;25529:30;25595:33;25575:18;;;25568:61;25646:18;;63150:68:0;25315:355:1;63150:68:0;63237:20;;;;:8;:20;;;;;:30;;;-1:-1:-1;;;63237:30:0;;;;63229:66;;;;-1:-1:-1;;;63229:66:0;;38700:2:1;63229:66:0;;;38682:21:1;38739:2;38719:18;;;38712:30;38778:25;38758:18;;;38751:53;38821:18;;63229:66:0;38498:347:1;63229:66:0;63314:40;63333:10;63345:8;63314:18;:40::i;:::-;63306:85;;;;-1:-1:-1;;;63306:85:0;;37519:2:1;63306:85:0;;;37501:21:1;;;37538:18;;;37531:30;37597:34;37577:18;;;37570:62;37649:18;;63306:85:0;37317:356:1;63306:85:0;63410:20;;;;:8;:20;;;;;;;;:47;;;:37;;:47;;;;;;;;63402:111;;;;-1:-1:-1;;;63402:111:0;;24387:2:1;63402:111:0;;;24369:21:1;24426:2;24406:18;;;24399:30;24465:34;24445:18;;;24438:62;-1:-1:-1;;;24516:18:1;;;24509:49;24575:19;;63402:111:0;24185:415:1;63402:111:0;63532:20;;;;:8;:20;;;;;:27;;;;;;:79;;-1:-1:-1;63577:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;63577:34:0;63563:10;:48;63532:79;63524:124;;;;-1:-1:-1;;;63524:124:0;;37158:2:1;63524:124:0;;;37140:21:1;;;37177:18;;;37170:30;37236:34;37216:18;;;37209:62;37288:18;;63524:124:0;36956:356:1;63524:124:0;63668:20;;;;:8;:20;;;;;:27;;;;;;;;63667:28;;:80;;-1:-1:-1;63713:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;63713:34:0;63699:10;:48;63667:80;63659:114;;;;-1:-1:-1;;;63659:114:0;;30636:2:1;63659:114:0;;;30618:21:1;30675:2;30655:18;;;30648:30;-1:-1:-1;;;30694:18:1;;;30687:51;30755:18;;63659:114:0;30434:345:1;63659:114:0;63845:5;63795:20;;;:8;:20;;;;;;;;:47;;;:37;;:47;;;;;:55;;-1:-1:-1;;63795:55:0;;;63861:34;63872:10;63804;63861;:34::i;76361:389::-;61139:20;;;;:8;:20;;;;;:27;;;:20;;:27;;;;;61138:28;61130:57;;;;-1:-1:-1;;;61130:57:0;;;;;;;:::i;:::-;61669:10:::1;61656:24;::::0;;;:12:::1;:24;::::0;;;;;76462:10;;61656:24:::1;;::::0;:76:::1;;-1:-1:-1::0;61698:20:0::1;::::0;;;:8:::1;:20;::::0;;;;:34:::1;;::::0;-1:-1:-1;;;;;61698:34:0::1;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1::0;;;61648:114:0::1;;;;;;;:::i;:::-;76537:1:::2;76502:20:::0;;;:8:::2;:20;::::0;;;;:32:::2;;::::0;76494:79:::2;;;::::0;-1:-1:-1;;;76494:79:0;;35298:2:1;76494:79:0::2;::::0;::::2;35280:21:1::0;35337:2;35317:18;;;35310:30;35376:32;35356:18;;;35349:60;35426:18;;76494:79:0::2;35096:354:1::0;76494:79:0::2;76591:20;::::0;;;:8:::2;:20;::::0;;;;76620:32:::2;::::0;::::2;::::0;76591:28:::2;::::0;;::::2;::::0;:20;76620:36:::2;::::0;76655:1:::2;::::0;76620:36:::2;:::i;:::-;76591:66;;;;;;;;;;;;76584:73;;;;:::i;:::-;76703:20;::::0;;;:8:::2;:20;::::0;;;;:32:::2;;::::0;:39:::2;::::0;76740:1:::2;76703:36;:39::i;:::-;76668:20;::::0;;;:8:::2;:20;::::0;;;;;:32:::2;;:74:::0;;;;-1:-1:-1;;76361:389:0:o;73481:404::-;61669:10;61656:24;;;;:12;:24;;;;;;73636:10;;61656:24;;;:76;;-1:-1:-1;61698:20:0;;;;:8;:20;;;;;:34;;;-1:-1:-1;;;;;61698:34:0;61684:10;:48;61656:76;61648:114;;;;-1:-1:-1;;;61648:114:0;;;;;;;:::i;:::-;73706:3:::1;73676:26;:33;;73668:57;;;::::0;-1:-1:-1;;;73668:57:0;;20232:2:1;73668:57:0::1;::::0;::::1;20214:21:1::0;20271:2;20251:18;;;20244:30;-1:-1:-1;;;20290:18:1;;;20283:41;20341:18;;73668:57:0::1;20030:335:1::0;73668:57:0::1;-1:-1:-1::0;73736:20:0::1;::::0;;;:8:::1;:20;::::0;;;;;:36:::1;::::0;::::1;:55:::0;;-1:-1:-1;;;;;;73736:55:0::1;-1:-1:-1::0;;;;;73736:55:0;;;::::1;::::0;;;::::1;::::0;;;73802:46:::1;;:75:::0;73481:404::o;69854:335::-;61526:10;61513:24;;;;:12;:24;;;;;;;;61505:52;;;;-1:-1:-1;;;61505:52:0;;;;;;;:::i;:::-;69970:9:::1;69966:216;69985:18:::0;;::::1;69966:216;;;70025:13;70041:7;;70049:1;70041:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;70025:26:::0;-1:-1:-1;;;;;;70074:19:0;::::1;70066:44;;;;-1:-1:-1::0;;;70066:44:0::1;;;;;;;:::i;:::-;70165:5;70125:20:::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;70125:37:0;;::::1;::::0;;:30:::1;::::0;;::::1;:37:::0;;;:45;;-1:-1:-1;;70125:45:0::1;::::0;;70005:3;::::1;::::0;::::1;:::i;:::-;;;;69966:216;;81437:319:::0;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;81527:22:0;::::1;81519:73;;;;-1:-1:-1::0;;;81519:73:0::1;;;;;;;:::i;:::-;81603:5;:16:::0;;-1:-1:-1;;;;;81603:16:0;::::1;-1:-1:-1::0;;;;;;81603:16:0;;::::1;::::0;::::1;::::0;;;:5:::1;81630:22:::0;;;:12:::1;:22;::::0;;;;:29;;-1:-1:-1;;81630:29:0::1;81603:16:::0;81630:29:::1;::::0;;81670:14:::1;:34:::0;;;;::::1;::::0;;::::1;::::0;;81715:33:::1;81611:8:::0;81715:23:::1;:33::i;:::-;81437:319:::0;:::o;25461:305::-;25563:4;-1:-1:-1;;;;;;25600:40:0;;-1:-1:-1;;;25600:40:0;;:105;;-1:-1:-1;;;;;;;25657:48:0;;-1:-1:-1;;;25657:48:0;25600:105;:158;;;-1:-1:-1;;;;;;;;;;1585:40:0;;;25722:36;1476:157;35341:174;35416:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35416:29:0;-1:-1:-1;;;;;35416:29:0;;;;;;;;:24;;35470:23;35416:24;35470:14;:23::i;:::-;-1:-1:-1;;;;;35461:46:0;;;;;;;;;;;35341:174;;:::o;31653:348::-;31746:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;31763:73;;;;-1:-1:-1;;;31763:73:0;;29121:2:1;31763:73:0;;;29103:21:1;29160:2;29140:18;;;29133:30;29199:34;29179:18;;;29172:62;-1:-1:-1;;;29250:18:1;;;29243:42;29302:19;;31763:73:0;28919:408:1;31763:73:0;31847:13;31863:23;31878:7;31863:14;:23::i;:::-;31847:39;;31916:5;-1:-1:-1;;;;;31905:16:0;:7;-1:-1:-1;;;;;31905:16:0;;:51;;;;31949:7;-1:-1:-1;;;;;31925:31:0;:20;31937:7;31925:11;:20::i;:::-;-1:-1:-1;;;;;31925:31:0;;31905:51;:87;;;-1:-1:-1;;;;;;28745:25:0;;;28721:4;28745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31960:32;31897:96;31653:348;-1:-1:-1;;;;31653:348:0:o;34645:578::-;34804:4;-1:-1:-1;;;;;34777:31:0;:23;34792:7;34777:14;:23::i;:::-;-1:-1:-1;;;;;34777:31:0;;34769:85;;;;-1:-1:-1;;;34769:85:0;;34888:2:1;34769:85:0;;;34870:21:1;34927:2;34907:18;;;34900:30;34966:34;34946:18;;;34939:62;-1:-1:-1;;;35017:18:1;;;35010:39;35066:19;;34769:85:0;34686:405:1;34769:85:0;-1:-1:-1;;;;;34873:16:0;;34865:65;;;;-1:-1:-1;;;34865:65:0;;26778:2:1;34865:65:0;;;26760:21:1;26817:2;26797:18;;;26790:30;26856:34;26836:18;;;26829:62;-1:-1:-1;;;26907:18:1;;;26900:34;26951:19;;34865:65:0;26576:400:1;34865:65:0;34943:39;34964:4;34970:2;34974:7;34943:20;:39::i;:::-;35047:29;35064:1;35068:7;35047:8;:29::i;:::-;-1:-1:-1;;;;;35089:15:0;;;;;;:9;:15;;;;;:20;;35108:1;;35089:15;:20;;35108:1;;35089:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35120:13:0;;;;;;:9;:13;;;;;:18;;35137:1;;35120:13;:18;;35137:1;;35120:18;:::i;:::-;;;;-1:-1:-1;;35149:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35149:21:0;-1:-1:-1;;;;;35149:21:0;;;;;;;;;35188:27;;35149:16;;35188:27;;;;;;;34645:578;;;:::o;64283:160::-;64370:4;64412:23;:4;64425:9;64412:12;:23::i;:::-;64394:14;;-1:-1:-1;;;;;64394:41:0;;;:14;;:41;;64283:160;-1:-1:-1;;;64283:160:0:o;63911:360::-;64027:7;64049:12;64181:6;64189:10;64201:3;64206:5;64164:48;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;64164:48:0;;;;;;64154:59;;64164:48;64154:59;;;;13233:66:1;64074:140:0;;;13221:79:1;13316:12;;;;13309:28;;;;64074:140:0;;;;;;;;;;13353:12:1;;;;64074:140:0;;;64064:163;;;;;;63911:360;-1:-1:-1;;;;;;63911:360:0:o;9106:98::-;9164:7;9191:5;9195:1;9191;:5;:::i;:::-;9184:12;9106:98;-1:-1:-1;;;9106:98:0:o;66496:988::-;66567:16;66649:20;;;:8;:20;;;;;;;:32;;66567:16;;66621:24;60277:9;66658:10;66621:24;:::i;:::-;66620:61;;;;:::i;:::-;66734:20;;;;:8;:20;;;;;;;;:32;;;66692:39;;;:26;:39;;;;;:74;;;66814:20;;;;;66598:83;;-1:-1:-1;66814:39:0;;66851:1;66814:36;:39::i;:::-;66779:20;;;;:8;:20;;;;;;;:32;:74;;;;66866:296;66890:20;;;;:8;:20;;;;;:27;;;66886:31;;66866:296;;;66939:12;66981:20;;;:8;:20;;;;;;;:32;;67015:19;:12;67032:1;67015:16;:19::i;:::-;66964:83;;;;;;13561:19:1;;;;13596:12;;13589:28;67036:10:0;13655:2:1;13651:15;;;-1:-1:-1;;13647:53:1;13633:12;;;13626:75;13717:12;;66964:83:0;;;-1:-1:-1;;66964:83:0;;;;;;;;;66954:94;;66964:83;66954:94;;;;67063:28;;;;:15;:28;;;;;:39;;;;;;;;;;;;;;;;;67117:19;;;:13;:19;;;;;:33;;;-1:-1:-1;66919:3:0;;;;:::i;:::-;;;;66866:296;;;;67174:27;67184:3;67189:11;67174:9;:27::i;:::-;67214:31;;;;:18;:31;;;;;;;;:44;;;67269:31;;;:19;:31;;;;;:49;;;;;;;;;;;;;;;;;67371:20;;;:8;:20;;;;;;;;:32;;;;67405:39;;;;;67336:109;;67248:10;;67233:11;;-1:-1:-1;;;;;67336:109:0;;;;;;;40734:25:1;;40790:2;40775:18;;40768:34;40722:2;40707:18;;40560:248;67336:109:0;;;;;;;;67465:11;66496:988;-1:-1:-1;;;66496:988:0:o;67492:1278::-;67557:9;:13;67553:1210;;67589:26;67618:20;;;:8;:20;;;;;:39;;;;67689:54;:9;67618:39;67689:13;:54::i;:::-;67672:71;-1:-1:-1;67764:10:0;;67760:87;;67795:36;;67803:10;;67795:36;;;;;67824:6;;67795:36;;;;67824:6;67803:10;67795:36;;;;;;;;;;;;;;;;;;;;;67760:87;67922:17;;67863:24;;67890:50;;:27;:18;67913:3;67890:22;:27::i;:::-;:31;;:50::i;:::-;67863:77;-1:-1:-1;67959:20:0;;67955:102;;68000:14;;:41;;-1:-1:-1;;;;;68000:14:0;;;;:41;;;;;68024:16;;68000:14;:41;:14;:41;68024:16;68000:14;:41;;;;;;;;;;;;;;;;;;;;;67955:102;68073:20;68096:40;:18;68119:16;68096:22;:40::i;:::-;68153:29;68201:20;;;:8;:20;;;;;:46;;;68073:63;;-1:-1:-1;68153:29:0;68201:50;68197:348;;68322:20;;;;:8;:20;;;;;:46;;;68296:73;;:21;:12;68313:3;68296:16;:21::i;:73::-;68272:97;-1:-1:-1;68392:25:0;;68388:142;;68442:20;;;;:8;:20;;;;;;:36;;;:68;;-1:-1:-1;;;;;68442:36:0;;;;:68;;;;;68488:21;;68442:68;:20;:68;68488:21;68442:36;:68;;;;;;;;;;;;;;;;;;;;;68388:142;68561:20;68584:39;:12;68601:21;68584:16;:39::i;:::-;68561:62;-1:-1:-1;68642:16:0;;68638:114;;68679:20;;;;:8;:20;;;;;;:34;;;:57;;-1:-1:-1;;;;;68679:34:0;;;;:57;;;;;68723:12;;68679:57;:20;:57;68723:12;68679:34;:57;;;;;;;;;;;;;;;;;;;;;68638:114;67572:1191;;;;;;67492:1278;:::o;33948:360::-;34008:13;34024:23;34039:7;34024:14;:23::i;:::-;34008:39;;34060:48;34081:5;34096:1;34100:7;34060:20;:48::i;:::-;34149:29;34166:1;34170:7;34149:8;:29::i;:::-;-1:-1:-1;;;;;34191:16:0;;;;;;:9;:16;;;;;:21;;34211:1;;34191:16;:21;;34211:1;;34191:21;:::i;:::-;;;;-1:-1:-1;;34230:16:0;;;;:7;:16;;;;;;34223:23;;-1:-1:-1;;;;;;34223:23:0;;;34264:36;34238:7;;34230:16;-1:-1:-1;;;;;34264:36:0;;;;;34230:16;;34264:36;33997:311;33948:360;:::o;30731:315::-;30888:28;30898:4;30904:2;30908:7;30888:9;:28::i;:::-;30935:48;30958:4;30964:2;30968:7;30977:5;30935:22;:48::i;:::-;30927:111;;;;-1:-1:-1;;;30927:111:0;;;;;;;:::i;48024:723::-;48080:13;48301:10;48297:53;;-1:-1:-1;;48328:10:0;;;;;;;;;;;;-1:-1:-1;;;48328:10:0;;;;;48024:723::o;48297:53::-;48375:5;48360:12;48416:78;48423:9;;48416:78;;48449:8;;;;:::i;:::-;;-1:-1:-1;48472:10:0;;-1:-1:-1;48480:2:0;48472:10;;:::i;:::-;;;48416:78;;;48504:19;48536:6;48526:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48526:17:0;;48504:39;;48554:154;48561:10;;48554:154;;48588:11;48598:1;48588:11;;:::i;:::-;;-1:-1:-1;48657:10:0;48665:2;48657:5;:10;:::i;:::-;48644:24;;:2;:24;:::i;:::-;48631:39;;48614:6;48621;48614:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;48614:56:0;;;;;;;;-1:-1:-1;48685:11:0;48694:2;48685:11;;:::i;:::-;;;48554:154;;9487:98;9545:7;9572:5;9576:1;9572;:5;:::i;47520:244::-;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47609:22:0;::::1;47601:73;;;;-1:-1:-1::0;;;47601:73:0::1;;;;;;;:::i;:::-;47711:6;::::0;47690:38:::1;::::0;-1:-1:-1;;;;;47690:38:0;;::::1;::::0;47711:6:::1;::::0;47690:38:::1;::::0;47711:6:::1;::::0;47690:38:::1;47739:6;:17:::0;;-1:-1:-1;;;;;;47739:17:0::1;-1:-1:-1::0;;;;;47739:17:0;;;::::1;::::0;;;::::1;::::0;;47520:244::o;41006:589::-;-1:-1:-1;;;;;41212:18:0;;41208:187;;41247:40;41279:7;42422:10;:17;;42395:24;;;;:15;:24;;;;;:44;;;42450:24;;;;;;;;;;;;42318:164;41247:40;41208:187;;;41317:2;-1:-1:-1;;;;;41309:10:0;:4;-1:-1:-1;;;;;41309:10:0;;41305:90;;41336:47;41369:4;41375:7;41336:32;:47::i;:::-;-1:-1:-1;;;;;41409:16:0;;41405:183;;41442:45;41479:7;41442:36;:45::i;41405:183::-;41515:4;-1:-1:-1;;;;;41509:10:0;:2;-1:-1:-1;;;;;41509:10:0;;41505:83;;41536:40;41564:2;41568:7;41536:27;:40::i;54049:231::-;54127:7;54148:17;54167:18;54189:27;54200:4;54206:9;54189:10;:27::i;:::-;54147:69;;;;54227:18;54239:5;54227:11;:18::i;:::-;-1:-1:-1;54263:9:0;54049:231;-1:-1:-1;;;54049:231:0:o;32343:110::-;32419:26;32429:2;32433:7;32419:26;;;;;;;;;;;;:9;:26::i;:::-;32343:110;;:::o;10243:98::-;10301:7;10328:5;10332:1;10328;:5;:::i;9844:98::-;9902:7;9929:5;9933:1;9929;:5;:::i;36080:799::-;36235:4;-1:-1:-1;;;;;36256:13:0;;14304:20;14352:8;36252:620;;36292:72;;-1:-1:-1;;;36292:72:0;;-1:-1:-1;;;;;36292:36:0;;;;;:72;;717:10;;36343:4;;36349:7;;36358:5;;36292:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36292:72:0;;;;;;;;-1:-1:-1;;36292:72:0;;;;;;;;;;;;:::i;:::-;;;36288:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36534:13:0;;36530:272;;36577:60;;-1:-1:-1;;;36577:60:0;;;;;;;:::i;36530:272::-;36752:6;36746:13;36737:6;36733:2;36729:15;36722:38;36288:529;-1:-1:-1;;;;;;36415:51:0;-1:-1:-1;;;36415:51:0;;-1:-1:-1;36408:58:0;;36252:620;-1:-1:-1;36856:4:0;36849:11;;43109:988;43375:22;43425:1;43400:22;43417:4;43400:16;:22::i;:::-;:26;;;;:::i;:::-;43437:18;43458:26;;;:17;:26;;;;;;43375:51;;-1:-1:-1;43591:28:0;;;43587:328;;-1:-1:-1;;;;;43658:18:0;;43636:19;43658:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43709:30;;;;;;:44;;;43826:30;;:17;:30;;;;;:43;;;43587:328;-1:-1:-1;44011:26:0;;;;:17;:26;;;;;;;;44004:33;;;-1:-1:-1;;;;;44055:18:0;;;;;:12;:18;;;;;:34;;;;;;;44048:41;43109:988::o;44392:1079::-;44670:10;:17;44645:22;;44670:21;;44690:1;;44670:21;:::i;:::-;44702:18;44723:24;;;:15;:24;;;;;;45096:10;:26;;44645:46;;-1:-1:-1;44723:24:0;;44645:46;;45096:26;;;;;;:::i;:::-;;;;;;;;;45074:48;;45160:11;45135:10;45146;45135:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45240:28;;;:15;:28;;;;;;;:41;;;45412:24;;;;;45405:31;45447:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44463:1008;;;44392:1079;:::o;41896:221::-;41981:14;41998:20;42015:2;41998:16;:20::i;:::-;-1:-1:-1;;;;;42029:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42074:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41896:221:0:o;51939:1308::-;52020:7;52029:12;52254:9;:16;52274:2;52254:22;52250:990;;;52550:4;52535:20;;52529:27;52600:4;52585:20;;52579:27;52658:4;52643:20;;52637:27;52293:9;52629:36;52701:25;52712:4;52629:36;52529:27;52579;52701:10;:25::i;:::-;52694:32;;;;;;;;;52250:990;52748:9;:16;52768:2;52748:22;52744:496;;;53023:4;53008:20;;53002:27;53074:4;53059:20;;53053:27;53116:23;53127:4;53002:27;53053;53116:10;:23::i;:::-;53109:30;;;;;;;;52744:496;-1:-1:-1;53188:1:0;;-1:-1:-1;53192:35:0;52744:496;51939:1308;;;;;:::o;50210:643::-;50288:20;50279:5;:29;;;;;;;;:::i;:::-;;50275:571;;;50210:643;:::o;50275:571::-;50386:29;50377:5;:38;;;;;;;;:::i;:::-;;50373:473;;;50432:34;;-1:-1:-1;;;50432:34:0;;19535:2:1;50432:34:0;;;19517:21:1;19574:2;19554:18;;;19547:30;19613:26;19593:18;;;19586:54;19657:18;;50432:34:0;19333:348:1;50373:473:0;50497:35;50488:5;:44;;;;;;;;:::i;:::-;;50484:362;;;50549:41;;-1:-1:-1;;;50549:41:0;;22085:2:1;50549:41:0;;;22067:21:1;22124:2;22104:18;;;22097:30;22163:33;22143:18;;;22136:61;22214:18;;50549:41:0;21883:355:1;50484:362:0;50621:30;50612:5;:39;;;;;;;;:::i;:::-;;50608:238;;;50668:44;;-1:-1:-1;;;50668:44:0;;28718:2:1;50668:44:0;;;28700:21:1;28757:2;28737:18;;;28730:30;28796:34;28776:18;;;28769:62;-1:-1:-1;;;28847:18:1;;;28840:32;28889:19;;50668:44:0;28516:398:1;50608:238:0;50743:30;50734:5;:39;;;;;;;;:::i;:::-;;50730:116;;;50790:44;;-1:-1:-1;;;50790:44:0;;32920:2:1;50790:44:0;;;32902:21:1;32959:2;32939:18;;;32932:30;32998:34;32978:18;;;32971:62;-1:-1:-1;;;33049:18:1;;;33042:32;33091:19;;50790:44:0;32718:398:1;32680:321:0;32810:18;32816:2;32820:7;32810:5;:18::i;:::-;32861:54;32892:1;32896:2;32900:7;32909:5;32861:22;:54::i;:::-;32839:154;;;;-1:-1:-1;;;32839:154:0;;;;;;;:::i;55548:1632::-;55679:7;;56613:66;56600:79;;56596:163;;;-1:-1:-1;56712:1:0;;-1:-1:-1;56716:30:0;56696:51;;56596:163;56773:1;:7;;56778:2;56773:7;;:18;;;;;56784:1;:7;;56789:2;56784:7;;56773:18;56769:102;;;-1:-1:-1;56824:1:0;;-1:-1:-1;56828:30:0;56808:51;;56769:102;56985:24;;;56968:14;56985:24;;;;;;;;;18058:25:1;;;18131:4;18119:17;;18099:18;;;18092:45;;;;18153:18;;;18146:34;;;18196:18;;;18189:34;;;56985:24:0;;18030:19:1;;56985:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56985:24:0;;-1:-1:-1;;56985:24:0;;;-1:-1:-1;;;;;;;57024:20:0;;57020:103;;57077:1;57081:29;57061:50;;;;;;;57020:103;57143:6;-1:-1:-1;57151:20:0;;-1:-1:-1;55548:1632:0;;;;;;;;:::o;54543:391::-;54657:7;;-1:-1:-1;;;;;54758:75:0;;54860:3;54856:12;;;54870:2;54852:21;54901:25;54912:4;54852:21;54921:1;54758:75;54901:10;:25::i;:::-;54894:32;;;;;;54543:391;;;;;;:::o;33337:382::-;-1:-1:-1;;;;;33417:16:0;;33409:61;;;;-1:-1:-1;;;33409:61:0;;33323:2:1;33409:61:0;;;33305:21:1;;;33342:18;;;33335:30;33401:34;33381:18;;;33374:62;33453:18;;33409:61:0;33121:356:1;33409:61:0;31424:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;:30;33481:58;;;;-1:-1:-1;;;33481:58:0;;24807:2:1;33481:58:0;;;24789:21:1;24846:2;24826:18;;;24819:30;24885;24865:18;;;24858:58;24933:18;;33481:58:0;24605:352:1;33481:58:0;33552:45;33581:1;33585:2;33589:7;33552:20;:45::i;:::-;-1:-1:-1;;;;;33610:13:0;;;;;;:9;:13;;;;;:18;;33627:1;;33610:13;:18;;33627:1;;33610:18;:::i;:::-;;;;-1:-1:-1;;33639:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33639:21:0;-1:-1:-1;;;;;33639:21:0;;;;;;;;33678:33;;33639:16;;;33678:33;;33639:16;;33678:33;33337:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;386:160;451:20;;507:13;;500:21;490:32;;480:60;;536:1;533;526:12;480:60;386:160;;;:::o;551:718::-;593:5;646:3;639:4;631:6;627:17;623:27;613:55;;664:1;661;654:12;613:55;700:6;687:20;726:18;763:2;759;756:10;753:36;;;769:18;;:::i;:::-;844:2;838:9;812:2;898:13;;-1:-1:-1;;894:22:1;;;918:2;890:31;886:40;874:53;;;942:18;;;962:22;;;939:46;936:72;;;988:18;;:::i;:::-;1028:10;1024:2;1017:22;1063:2;1055:6;1048:18;1109:3;1102:4;1097:2;1089:6;1085:15;1081:26;1078:35;1075:55;;;1126:1;1123;1116:12;1075:55;1190:2;1183:4;1175:6;1171:17;1164:4;1156:6;1152:17;1139:54;1237:1;1230:4;1225:2;1217:6;1213:15;1209:26;1202:37;1257:6;1248:15;;;;;;551:718;;;;:::o;1274:247::-;1333:6;1386:2;1374:9;1365:7;1361:23;1357:32;1354:52;;;1402:1;1399;1392:12;1354:52;1441:9;1428:23;1460:31;1485:5;1460:31;:::i;1786:388::-;1854:6;1862;1915:2;1903:9;1894:7;1890:23;1886:32;1883:52;;;1931:1;1928;1921:12;1883:52;1970:9;1957:23;1989:31;2014:5;1989:31;:::i;:::-;2039:5;-1:-1:-1;2096:2:1;2081:18;;2068:32;2109:33;2068:32;2109:33;:::i;:::-;2161:7;2151:17;;;1786:388;;;;;:::o;2179:456::-;2256:6;2264;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:52;;;2341:1;2338;2331:12;2293:52;2380:9;2367:23;2399:31;2424:5;2399:31;:::i;:::-;2449:5;-1:-1:-1;2506:2:1;2491:18;;2478:32;2519:33;2478:32;2519:33;:::i;:::-;2179:456;;2571:7;;-1:-1:-1;;;2625:2:1;2610:18;;;;2597:32;;2179:456::o;2640:665::-;2735:6;2743;2751;2759;2812:3;2800:9;2791:7;2787:23;2783:33;2780:53;;;2829:1;2826;2819:12;2780:53;2868:9;2855:23;2887:31;2912:5;2887:31;:::i;:::-;2937:5;-1:-1:-1;2994:2:1;2979:18;;2966:32;3007:33;2966:32;3007:33;:::i;:::-;3059:7;-1:-1:-1;3113:2:1;3098:18;;3085:32;;-1:-1:-1;3168:2:1;3153:18;;3140:32;3195:18;3184:30;;3181:50;;;3227:1;3224;3217:12;3181:50;3250:49;3291:7;3282:6;3271:9;3267:22;3250:49;:::i;:::-;3240:59;;;2640:665;;;;;;;:::o;3310:315::-;3375:6;3383;3436:2;3424:9;3415:7;3411:23;3407:32;3404:52;;;3452:1;3449;3442:12;3404:52;3491:9;3478:23;3510:31;3535:5;3510:31;:::i;:::-;3560:5;-1:-1:-1;3584:35:1;3615:2;3600:18;;3584:35;:::i;:::-;3574:45;;3310:315;;;;;:::o;3630:::-;3698:6;3706;3759:2;3747:9;3738:7;3734:23;3730:32;3727:52;;;3775:1;3772;3765:12;3727:52;3814:9;3801:23;3833:31;3858:5;3833:31;:::i;:::-;3883:5;3935:2;3920:18;;;;3907:32;;-1:-1:-1;;;3630:315:1:o;3950:180::-;4009:6;4062:2;4050:9;4041:7;4037:23;4033:32;4030:52;;;4078:1;4075;4068:12;4030:52;-1:-1:-1;4101:23:1;;3950:180;-1:-1:-1;3950:180:1:o;4135:245::-;4193:6;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4301:9;4288:23;4320:30;4344:5;4320:30;:::i;4385:249::-;4454:6;4507:2;4495:9;4486:7;4482:23;4478:32;4475:52;;;4523:1;4520;4513:12;4475:52;4555:9;4549:16;4574:30;4598:5;4574:30;:::i;4824:315::-;4892:6;4900;4953:2;4941:9;4932:7;4928:23;4924:32;4921:52;;;4969:1;4966;4959:12;4921:52;5005:9;4992:23;4982:33;;5065:2;5054:9;5050:18;5037:32;5078:31;5103:5;5078:31;:::i;5472:391::-;5557:6;5565;5573;5626:2;5614:9;5605:7;5601:23;5597:32;5594:52;;;5642:1;5639;5632:12;5594:52;5678:9;5665:23;5655:33;;5738:2;5727:9;5723:18;5710:32;5751:31;5776:5;5751:31;:::i;5868:505::-;5963:6;5971;5979;6032:2;6020:9;6011:7;6007:23;6003:32;6000:52;;;6048:1;6045;6038:12;6000:52;6084:9;6071:23;6061:33;;6145:2;6134:9;6130:18;6117:32;6172:18;6164:6;6161:30;6158:50;;;6204:1;6201;6194:12;6158:50;6243:70;6305:7;6296:6;6285:9;6281:22;6243:70;:::i;:::-;5868:505;;6332:8;;-1:-1:-1;6217:96:1;;-1:-1:-1;;;;5868:505:1:o;6888:746::-;7002:6;7010;7018;7026;7034;7087:3;7075:9;7066:7;7062:23;7058:33;7055:53;;;7104:1;7101;7094:12;7055:53;7140:9;7127:23;7117:33;;7197:2;7186:9;7182:18;7169:32;7159:42;;7252:2;7241:9;7237:18;7224:32;7275:18;7316:2;7308:6;7305:14;7302:34;;;7332:1;7329;7322:12;7302:34;7355:49;7396:7;7387:6;7376:9;7372:22;7355:49;:::i;:::-;7345:59;;7457:2;7446:9;7442:18;7429:32;7413:48;;7486:2;7476:8;7473:16;7470:36;;;7502:1;7499;7492:12;7470:36;;7525:51;7568:7;7557:8;7546:9;7542:24;7525:51;:::i;:::-;6888:746;;;;-1:-1:-1;6888:746:1;;7623:3;7608:19;7595:33;;6888:746;-1:-1:-1;;;6888:746:1:o;7639:389::-;7717:6;7725;7778:2;7766:9;7757:7;7753:23;7749:32;7746:52;;;7794:1;7791;7784:12;7746:52;7830:9;7817:23;7807:33;;7891:2;7880:9;7876:18;7863:32;7918:18;7910:6;7907:30;7904:50;;;7950:1;7947;7940:12;7904:50;7973:49;8014:7;8005:6;7994:9;7990:22;7973:49;:::i;:::-;7963:59;;;7639:389;;;;;:::o;8033:248::-;8101:6;8109;8162:2;8150:9;8141:7;8137:23;8133:32;8130:52;;;8178:1;8175;8168:12;8130:52;-1:-1:-1;;8201:23:1;;;8271:2;8256:18;;;8243:32;;-1:-1:-1;8033:248:1:o;8286:573::-;8390:6;8398;8406;8414;8467:2;8455:9;8446:7;8442:23;8438:32;8435:52;;;8483:1;8480;8473:12;8435:52;8519:9;8506:23;8496:33;;8576:2;8565:9;8561:18;8548:32;8538:42;;8631:2;8620:9;8616:18;8603:32;8658:18;8650:6;8647:30;8644:50;;;8690:1;8687;8680:12;8644:50;8729:70;8791:7;8782:6;8771:9;8767:22;8729:70;:::i;:::-;8286:573;;;;-1:-1:-1;8818:8:1;-1:-1:-1;;;;8286:573:1:o;8864:457::-;8951:6;8959;8967;9020:2;9008:9;8999:7;8995:23;8991:32;8988:52;;;9036:1;9033;9026:12;8988:52;9072:9;9059:23;9049:33;;9129:2;9118:9;9114:18;9101:32;9091:42;;9184:2;9173:9;9169:18;9156:32;9211:18;9203:6;9200:30;9197:50;;;9243:1;9240;9233:12;9197:50;9266:49;9307:7;9298:6;9287:9;9283:22;9266:49;:::i;:::-;9256:59;;;8864:457;;;;;:::o;9326:1216::-;9485:6;9493;9501;9509;9517;9525;9533;9541;9594:3;9582:9;9573:7;9569:23;9565:33;9562:53;;;9611:1;9608;9601:12;9562:53;9647:9;9634:23;9624:33;;9704:2;9693:9;9689:18;9676:32;9666:42;;9759:2;9748:9;9744:18;9731:32;9782:18;9823:2;9815:6;9812:14;9809:34;;;9839:1;9836;9829:12;9809:34;9862:49;9903:7;9894:6;9883:9;9879:22;9862:49;:::i;:::-;9852:59;;9964:2;9953:9;9949:18;9936:32;9920:48;;9993:2;9983:8;9980:16;9977:36;;;10009:1;10006;9999:12;9977:36;10032:51;10075:7;10064:8;10053:9;10049:24;10032:51;:::i;:::-;10022:61;;10136:3;10125:9;10121:19;10108:33;10092:49;;10166:2;10156:8;10153:16;10150:36;;;10182:1;10179;10172:12;10150:36;10205:51;10248:7;10237:8;10226:9;10222:24;10205:51;:::i;:::-;10195:61;;10309:3;10298:9;10294:19;10281:33;10265:49;;10339:2;10329:8;10326:16;10323:36;;;10355:1;10352;10345:12;10323:36;;10378:51;10421:7;10410:8;10399:9;10395:24;10378:51;:::i;:::-;10368:61;;;10476:3;10465:9;10461:19;10448:33;10438:43;;10500:36;10531:3;10520:9;10516:19;10500:36;:::i;:::-;10490:46;;9326:1216;;;;;;;;;;;:::o;10547:257::-;10588:3;10626:5;10620:12;10653:6;10648:3;10641:19;10669:63;10725:6;10718:4;10713:3;10709:14;10702:4;10695:5;10691:16;10669:63;:::i;:::-;10786:2;10765:15;-1:-1:-1;;10761:29:1;10752:39;;;;10793:4;10748:50;;10547:257;-1:-1:-1;;10547:257:1:o;10809:185::-;10851:3;10889:5;10883:12;10904:52;10949:6;10944:3;10937:4;10930:5;10926:16;10904:52;:::i;:::-;10972:16;;;;;10809:185;-1:-1:-1;;10809:185:1:o;10999:527::-;11269:26;11265:31;11256:6;11252:2;11248:15;11244:53;11239:3;11232:66;11328:6;11323:2;11318:3;11314:12;11307:28;11365:6;11360:2;11355:3;11351:12;11344:28;11214:3;11401:6;11395:13;11417:62;11472:6;11467:2;11462:3;11458:12;11451:4;11443:6;11439:17;11417:62;:::i;:::-;11499:16;;;;11517:2;11495:25;;10999:527;-1:-1:-1;;;;;10999:527:1:o;11531:276::-;11662:3;11700:6;11694:13;11716:53;11762:6;11757:3;11750:4;11742:6;11738:17;11716:53;:::i;:::-;11785:16;;;;;11531:276;-1:-1:-1;;11531:276:1:o;11812:1174::-;11988:3;12017:1;12050:6;12044:13;12080:3;12102:1;12130:9;12126:2;12122:18;12112:28;;12190:2;12179:9;12175:18;12212;12202:61;;12256:4;12248:6;12244:17;12234:27;;12202:61;12282:2;12330;12322:6;12319:14;12299:18;12296:38;12293:165;;;-1:-1:-1;;;12357:33:1;;12413:4;12410:1;12403:15;12443:4;12364:3;12431:17;12293:165;12474:18;12501:104;;;;12619:1;12614:320;;;;12467:467;;12501:104;-1:-1:-1;;12534:24:1;;12522:37;;12579:16;;;;-1:-1:-1;12501:104:1;;12614:320;41302:1;41295:14;;;41339:4;41326:18;;12709:1;12723:165;12737:6;12734:1;12731:13;12723:165;;;12815:14;;12802:11;;;12795:35;12858:16;;;;12752:10;;12723:165;;;12727:3;;12917:6;12912:3;12908:16;12901:23;;12467:467;;;;;;;12950:30;12976:3;12968:6;12950:30;:::i;:::-;12943:37;11812:1174;-1:-1:-1;;;;;11812:1174:1:o;14172:488::-;-1:-1:-1;;;;;14441:15:1;;;14423:34;;14493:15;;14488:2;14473:18;;14466:43;14540:2;14525:18;;14518:34;;;14588:3;14583:2;14568:18;;14561:31;;;14366:4;;14609:45;;14634:19;;14626:6;14609:45;:::i;:::-;14601:53;14172:488;-1:-1:-1;;;;;;14172:488:1:o;16031:632::-;16202:2;16254:21;;;16324:13;;16227:18;;;16346:22;;;16173:4;;16202:2;16425:15;;;;16399:2;16384:18;;;16173:4;16468:169;16482:6;16479:1;16476:13;16468:169;;;16543:13;;16531:26;;16612:15;;;;16577:12;;;;16504:1;16497:9;16468:169;;;-1:-1:-1;16654:3:1;;16031:632;-1:-1:-1;;;;;;16031:632:1:o;18234:219::-;18383:2;18372:9;18365:21;18346:4;18403:44;18443:2;18432:9;18428:18;18420:6;18403:44;:::i;18458:870::-;18799:3;18788:9;18781:22;18762:4;18826:45;18866:3;18855:9;18851:19;18843:6;18826:45;:::i;:::-;18919:9;18911:6;18907:22;18902:2;18891:9;18887:18;18880:50;18953:32;18978:6;18970;18953:32;:::i;:::-;18939:46;;19033:9;19025:6;19021:22;19016:2;19005:9;19001:18;18994:50;19067:32;19092:6;19084;19067:32;:::i;:::-;19053:46;;19147:9;19139:6;19135:22;19130:2;19119:9;19115:18;19108:50;19181:32;19206:6;19198;19181:32;:::i;:::-;19167:46;;19262:9;19254:6;19250:22;19244:3;19233:9;19229:19;19222:51;19290:32;19315:6;19307;19290:32;:::i;:::-;19282:40;18458:870;-1:-1:-1;;;;;;;;18458:870:1:o;19686:339::-;19888:2;19870:21;;;19927:2;19907:18;;;19900:30;-1:-1:-1;;;19961:2:1;19946:18;;19939:45;20016:2;20001:18;;19686:339::o;20782:336::-;20984:2;20966:21;;;21023:2;21003:18;;;20996:30;-1:-1:-1;;;21057:2:1;21042:18;;21035:42;21109:2;21094:18;;20782:336::o;23005:414::-;23207:2;23189:21;;;23246:2;23226:18;;;23219:30;23285:34;23280:2;23265:18;;23258:62;-1:-1:-1;;;23351:2:1;23336:18;;23329:48;23409:3;23394:19;;23005:414::o;23424:349::-;23626:2;23608:21;;;23665:2;23645:18;;;23638:30;23704:27;23699:2;23684:18;;23677:55;23764:2;23749:18;;23424:349::o;23778:402::-;23980:2;23962:21;;;24019:2;23999:18;;;23992:30;24058:34;24053:2;24038:18;;24031:62;-1:-1:-1;;;24124:2:1;24109:18;;24102:36;24170:3;24155:19;;23778:402::o;24962:348::-;25164:2;25146:21;;;25203:2;25183:18;;;25176:30;25242:26;25237:2;25222:18;;25215:54;25301:2;25286:18;;24962:348::o;27687:334::-;27889:2;27871:21;;;27928:2;27908:18;;;27901:30;-1:-1:-1;;;27962:2:1;27947:18;;27940:40;28012:2;27997:18;;27687:334::o;30089:340::-;30291:2;30273:21;;;30330:2;30310:18;;;30303:30;-1:-1:-1;;;30364:2:1;30349:18;;30342:46;30420:2;30405:18;;30089:340::o;34325:356::-;34527:2;34509:21;;;34546:18;;;34539:30;34605:34;34600:2;34585:18;;34578:62;34672:2;34657:18;;34325:356::o;38080:413::-;38282:2;38264:21;;;38321:2;38301:18;;;38294:30;38360:34;38355:2;38340:18;;38333:62;-1:-1:-1;;;38426:2:1;38411:18;;38404:47;38483:3;38468:19;;38080:413::o;41355:128::-;41395:3;41426:1;41422:6;41419:1;41416:13;41413:39;;;41432:18;;:::i;:::-;-1:-1:-1;41468:9:1;;41355:128::o;41488:120::-;41528:1;41554;41544:35;;41559:18;;:::i;:::-;-1:-1:-1;41593:9:1;;41488:120::o;41613:168::-;41653:7;41719:1;41715;41711:6;41707:14;41704:1;41701:21;41696:1;41689:9;41682:17;41678:45;41675:71;;;41726:18;;:::i;:::-;-1:-1:-1;41766:9:1;;41613:168::o;41786:125::-;41826:4;41854:1;41851;41848:8;41845:34;;;41859:18;;:::i;:::-;-1:-1:-1;41896:9:1;;41786:125::o;41916:258::-;41988:1;41998:113;42012:6;42009:1;42006:13;41998:113;;;42088:11;;;42082:18;42069:11;;;42062:39;42034:2;42027:10;41998:113;;;42129:6;42126:1;42123:13;42120:48;;;-1:-1:-1;;42164:1:1;42146:16;;42139:27;41916:258::o;42179:380::-;42258:1;42254:12;;;;42301;;;42322:61;;42376:4;42368:6;42364:17;42354:27;;42322:61;42429:2;42421:6;42418:14;42398:18;42395:38;42392:161;;;42475:10;42470:3;42466:20;42463:1;42456:31;42510:4;42507:1;42500:15;42538:4;42535:1;42528:15;42564:135;42603:3;-1:-1:-1;;42624:17:1;;42621:43;;;42644:18;;:::i;:::-;-1:-1:-1;42691:1:1;42680:13;;42564:135::o;42704:112::-;42736:1;42762;42752:35;;42767:18;;:::i;:::-;-1:-1:-1;42801:9:1;;42704:112::o;42821:127::-;42882:10;42877:3;42873:20;42870:1;42863:31;42913:4;42910:1;42903:15;42937:4;42934:1;42927:15;42953:127;43014:10;43009:3;43005:20;43002:1;42995:31;43045:4;43042:1;43035:15;43069:4;43066:1;43059:15;43085:127;43146:10;43141:3;43137:20;43134:1;43127:31;43177:4;43174:1;43167:15;43201:4;43198:1;43191:15;43217:127;43278:10;43273:3;43269:20;43266:1;43259:31;43309:4;43306:1;43299:15;43333:4;43330:1;43323:15;43349:127;43410:10;43405:3;43401:20;43398:1;43391:31;43441:4;43438:1;43431:15;43465:4;43462:1;43455:15;43481:127;43542:10;43537:3;43533:20;43530:1;43523:31;43573:4;43570:1;43563:15;43597:4;43594:1;43587:15;43613:131;-1:-1:-1;;;;;43688:31:1;;43678:42;;43668:70;;43734:1;43731;43724:12;43749:131;-1:-1:-1;;;;;;43823:32:1;;43813:43;;43803:71;;43870:1;43867;43860:12

Swarm Source

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