ETH Price: $3,153.91 (+1.09%)
Gas: 2 Gwei

Token

Dirty Devils (DD)
 

Overview

Max Total Supply

1,530 DD

Holders

600

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DD
0xf13309e43379a6236b8a41c6819321d6663eb4e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DirtyDevils

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-31
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org
 
// File contracts/utils/introspection/IERC165.sol
 
// SPDX-License-Identifier: MIT
 
pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
 
 
// File contracts/token/ERC721/IERC721.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
 
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
 
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;
 
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;
 
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
 
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
 
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;
 
    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
 
    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}
 
 
// File contracts/token/ERC721/IERC721Receiver.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}
 
 
// File contracts/token/ERC721/extensions/IERC721Metadata.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
 
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
 
 
// File contracts/utils/Address.sol
 
 
 
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;
        // solhint-disable-next-line no-inline-assembly
        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");
 
        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
 
        // solhint-disable-next-line avoid-low-level-calls
        (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");
 
        // solhint-disable-next-line avoid-low-level-calls
        (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");
 
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }
 
    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
 
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
 
 
// File contracts/utils/Context.sol
 
 
 
pragma solidity ^0.8.0;
 
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
 
// File contracts/utils/Strings.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
 
}
 
 
// File contracts/utils/introspection/ERC165.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
 
 
// File contracts/token/ERC721/ERC721.sol
 
 
 
pragma solidity ^0.8.0;
 
 
 
 
 
 
 
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
 
    // Token name
    string private _name;
 
    // Token symbol
    string private _symbol;
 
    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;
 
    // Mapping owner address to token count
    mapping (address => uint256) private _balances;
 
    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;
 
    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;
 
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }
 
    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }
 
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
 
    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public 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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}
 
 
// File contracts/token/ERC721/extensions/ERC721URIStorage.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;
 
    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;
 
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
 
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
 
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
 
        return super.tokenURI(tokenId);
    }
 
    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }
 
    /**
     * @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 override {
        super._burn(tokenId);
 
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}
 
 
// File 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;
 
 
 
contract DirtyDevils is ERC721URIStorage, Ownable{
 
    event MintDevils (address indexed minter, uint256 startWith, uint256 times);
    
    
    uint256 public totalDevils;
    uint256 public totalCount = 8888; //bruhTotal
    uint256 public maxBatch = 20; // bruhBatch
    uint256 public price = 70000000000000000; // 0.07 eth
    string public baseURI;
    bool public started;
    bool public whiteListStart;
    mapping(address => bool) whiteList;
    mapping(address => uint256) whiteListMintCount;
    uint addressRegistryCount;
    
    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }
    
    modifier canWhitelistMint() {
        require(whiteListStart, "Hang on boys, youll get in soon");
        require(whiteList[msg.sender] == true, "Not whitelisted.");
        _; 
    }

    modifier mintEnabled() {
        require(started, "not started");
        _;
    }
 
    function totalSupply() public view virtual returns (uint256) {
        return totalDevils;
    }
 
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }
 
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }
 
    function changePrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }
 
    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }
 
    function setNormalStart(bool _start) public onlyOwner {
        started = _start;
    }
    
    function setWhiteListStart(bool _start) public onlyOwner {
        whiteListStart = _start;
    }
    
    function getWhitelistMintAmount(address _addr) public view virtual returns (uint256) {
        return whiteListMintCount[_addr];
    }
 
    function mintDevil(uint256 _times) payable public mintEnabled {
        require(_times >0 && _times <= maxBatch, "mint wrong number");
        require(totalDevils + _times <= totalCount, "too much");
        require(msg.value == _times * price, "value error");
        payable(owner()).transfer(msg.value);
        emit MintDevils(_msgSender(), totalDevils+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalDevils++);
        }
    } 
    
    function adminMint(uint256 _times) payable public onlyOwner {
        require(_times >0 && _times <= maxBatch, "mint wrong number");
        require(totalDevils + _times <= totalCount, "too much");
        require(msg.value == _times * price, "value error");
        payable(owner()).transfer(msg.value);
        emit MintDevils(_msgSender(), totalDevils+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalDevils++);
        }
    }
    
    
    function whitelistMint(uint _times) payable public canWhitelistMint {
        require(whiteListMintCount[msg.sender] - _times >= 0, "Over mint limit for address.");
        require(totalDevils + _times <= totalCount, "Mint amount will exceed total collection amount.");
        require(msg.value == _times * price, "Incorrect transaction value.");
        payable(owner()).transfer(msg.value);
        whiteListMintCount[_msgSender()] -= _times;
        emit MintDevils(_msgSender(), totalDevils+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalDevils++);
        }
    }
    
    
    function adminMintGiveaways(address _addr) public onlyOwner {
        require(totalDevils + 1 <= totalCount, "Mint amount will exceed total collection amount.");
        emit MintDevils(_addr, totalDevils+1, 1);
        _mint(_addr, 1 + totalDevils++);
    } 
    
    
    function addToWhitelist(address _addr, uint numberOfMints) public onlyOwner {
        whiteList[_addr] = true;
        whiteListMintCount[_addr] = numberOfMints;
        addressRegistryCount++;
    }
    
    function addToWhitelistBulk(address[] memory _addr,uint[] memory _numberOfMints) public onlyOwner {
        for(uint256 i = 0; i < _addr.length; i++){
            whiteList[_addr[i]] = true;
            whiteListMintCount[_addr[i]] = _numberOfMints[i];
        }
    }
    
    //Check address is in whiteList 
    function isAddressInWhitelist(address _addr) public view virtual returns(bool) {
            return whiteList[_addr] == true;
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintDevils","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256[]","name":"_numberOfMints","type":"uint256[]"}],"name":"addToWhitelistBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"adminMintGiveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getWhitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isAddressInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mintDevil","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setNormalStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setWhiteListStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDevils","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526122b86009556014600a5566f8b0a10e470000600b553480156200002757600080fd5b50604051620051ee380380620051ee83398181016040528101906200004d919062000280565b82828160009080519060200190620000679291906200015e565b508060019080519060200190620000809291906200015e565b5050506000620000956200015660201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c90805190602001906200014c9291906200015e565b5050505062000491565b600033905090565b8280546200016c90620003b6565b90600052602060002090601f016020900481019282620001905760008555620001dc565b82601f10620001ab57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001db578251825591602001919060010190620001be565b5b509050620001eb9190620001ef565b5090565b5b808211156200020a576000816000905550600101620001f0565b5090565b6000620002256200021f846200034a565b62000321565b9050828152602081018484840111156200023e57600080fd5b6200024b84828562000380565b509392505050565b600082601f8301126200026557600080fd5b8151620002778482602086016200020e565b91505092915050565b6000806000606084860312156200029657600080fd5b600084015167ffffffffffffffff811115620002b157600080fd5b620002bf8682870162000253565b935050602084015167ffffffffffffffff811115620002dd57600080fd5b620002eb8682870162000253565b925050604084015167ffffffffffffffff8111156200030957600080fd5b620003178682870162000253565b9150509250925092565b60006200032d62000340565b90506200033b8282620003ec565b919050565b6000604051905090565b600067ffffffffffffffff82111562000368576200036762000451565b5b620003738262000480565b9050602081019050919050565b60005b83811015620003a057808201518184015260208101905062000383565b83811115620003b0576000848401525b50505050565b60006002820490506001821680620003cf57607f821691505b60208210811415620003e657620003e562000422565b5b50919050565b620003f78262000480565b810181811067ffffffffffffffff8211171562000419576200041862000451565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d4d80620004a16000396000f3fe60806040526004361061021a5760003560e01c806370a08231116101235780639afdf2f3116100ab578063bffb26ce1161006f578063bffb26ce146107a1578063c1f26123146107ca578063c87b56dd146107e6578063e985e9c514610823578063f2fde38b146108605761021a565b80639afdf2f3146106be578063a035b1fe146106fb578063a22cb46514610726578063a2b40d191461074f578063b88d4fde146107785761021a565b806388eae705116100f257806388eae705146105d75780638da5cb5b14610602578063917bb57f1461062d57806395d89b41146106565780639a313299146106815761021a565b806370a082311461054b578063715018a6146105885780637a5fe4281461059f578063868ff4a2146105bb5761021a565b806334eafb11116101a65780635f4f603d116101755780635f4f603d146104645780636352211e1461048d57806367765b87146104ca5780636a36bd83146104f55780636c0360eb146105205761021a565b806334eafb11146103be5780633c49a8a9146103e957806342842e0e1461041257806355f804b31461043b5761021a565b8063162094c4116101ed578063162094c4146102ed57806318160ddd146103165780631f2698ab14610341578063214405fc1461036c57806323b872dd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613750565b610889565b6040516102539190613d7b565b60405180910390f35b34801561026857600080fd5b5061027161096b565b60405161027e9190613d96565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137e3565b6109fd565b6040516102bb9190613d14565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061367f565b610a82565b005b3480156102f957600080fd5b50610314600480360381019061030f919061380c565b610b9a565b005b34801561032257600080fd5b5061032b610c24565b6040516103389190614118565b60405180910390f35b34801561034d57600080fd5b50610356610c2e565b6040516103639190613d7b565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061367f565b610c41565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190613579565b610d75565b005b3480156103ca57600080fd5b506103d3610dd5565b6040516103e09190614118565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613514565b610ddb565b005b34801561041e57600080fd5b5061043960048036038101906104349190613579565b610f38565b005b34801561044757600080fd5b50610462600480360381019061045d91906137a2565b610f58565b005b34801561047057600080fd5b5061048b60048036038101906104869190613727565b610fee565b005b34801561049957600080fd5b506104b460048036038101906104af91906137e3565b611087565b6040516104c19190613d14565b60405180910390f35b3480156104d657600080fd5b506104df611139565b6040516104ec9190614118565b60405180910390f35b34801561050157600080fd5b5061050a61113f565b6040516105179190614118565b60405180910390f35b34801561052c57600080fd5b50610535611145565b6040516105429190613d96565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613514565b6111d3565b60405161057f9190614118565b60405180910390f35b34801561059457600080fd5b5061059d61128b565b005b6105b960048036038101906105b491906137e3565b6113c8565b005b6105d560048036038101906105d091906137e3565b611611565b005b3480156105e357600080fd5b506105ec611987565b6040516105f99190613d7b565b60405180910390f35b34801561060e57600080fd5b5061061761199a565b6040516106249190613d14565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613727565b6119c4565b005b34801561066257600080fd5b5061066b611a5d565b6040516106789190613d96565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613514565b611aef565b6040516106b59190613d7b565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613514565b611b4c565b6040516106f29190614118565b60405180910390f35b34801561070757600080fd5b50610710611b95565b60405161071d9190614118565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613643565b611b9b565b005b34801561075b57600080fd5b50610776600480360381019061077191906137e3565b611d1c565b005b34801561078457600080fd5b5061079f600480360381019061079a91906135c8565b611da2565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906136bb565b611e04565b005b6107e460048036038101906107df91906137e3565b612000565b005b3480156107f257600080fd5b5061080d600480360381019061080891906137e3565b612276565b60405161081a9190613d96565b60405180910390f35b34801561082f57600080fd5b5061084a6004803603810190610845919061353d565b6123c8565b6040516108579190613d7b565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613514565b61245c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610964575061096382612608565b5b9050919050565b60606000805461097a90614484565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690614484565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a0882612672565b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90613fb8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8d82611087565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590614038565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1d6126de565b73ffffffffffffffffffffffffffffffffffffffff161480610b4c5750610b4b81610b466126de565b6123c8565b5b610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613ed8565b60405180910390fd5b610b9583836126e6565b505050565b610ba26126de565b73ffffffffffffffffffffffffffffffffffffffff16610bc061199a565b73ffffffffffffffffffffffffffffffffffffffff1614610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613fd8565b60405180910390fd5b610c20828261279f565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610c496126de565b73ffffffffffffffffffffffffffffffffffffffff16610c6761199a565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613fd8565b60405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106000815480929190610d6c906144e7565b91905055505050565b610d86610d806126de565b82612813565b610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90614058565b60405180910390fd5b610dd08383836128f1565b505050565b60095481565b610de36126de565b73ffffffffffffffffffffffffffffffffffffffff16610e0161199a565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613fd8565b60405180910390fd5b6009546001600854610e6991906142a7565b1115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614098565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e156001600854610ef191906142a7565b6001604051610f01929190614133565b60405180910390a2610f358160086000815480929190610f20906144e7565b919050556001610f3091906142a7565b612b4d565b50565b610f5383838360405180602001604052806000815250611da2565b505050565b610f606126de565b73ffffffffffffffffffffffffffffffffffffffff16610f7e61199a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613fd8565b60405180910390fd5b80600c9080519060200190610fea92919061320c565b5050565b610ff66126de565b73ffffffffffffffffffffffffffffffffffffffff1661101461199a565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613fd8565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613f18565b60405180910390fd5b80915050919050565b600a5481565b60085481565b600c805461115290614484565b80601f016020809104026020016040519081016040528092919081815260200182805461117e90614484565b80156111cb5780601f106111a0576101008083540402835291602001916111cb565b820191906000526020600020905b8154815290600101906020018083116111ae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613ef8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112936126de565b73ffffffffffffffffffffffffffffffffffffffff166112b161199a565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff16611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906140b8565b60405180910390fd5b6000811180156114295750600a548111155b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613e38565b60405180910390fd5b6009548160085461147991906142a7565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613db8565b60405180910390fd5b600b54816114c8919061432e565b3414611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906140f8565b60405180910390fd5b61151161199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611556573d6000803e3d6000fd5b5061155f6126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e1560016008546115a591906142a7565b836040516115b492919061415c565b60405180910390a260005b8181101561160d576115fa6115d26126de565b600860008154809291906115e5906144e7565b9190505560016115f591906142a7565b612b4d565b8080611605906144e7565b9150506115bf565b5050565b600d60019054906101000a900460ff16611660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611657906140d8565b60405180910390fd5b60011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90614078565b60405180910390fd5b600081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117409190614388565b1015611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613e98565b60405180910390fd5b6009548160085461179291906142a7565b11156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614098565b60405180910390fd5b600b54816117e1919061432e565b3414611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613f58565b60405180910390fd5b61182a61199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561186f573d6000803e3d6000fd5b5080600f600061187d6126de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c69190614388565b925050819055506118d56126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e15600160085461191b91906142a7565b8360405161192a92919061415c565b60405180910390a260005b81811015611983576119706119486126de565b6008600081548092919061195b906144e7565b91905055600161196b91906142a7565b612b4d565b808061197b906144e7565b915050611935565b5050565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119cc6126de565b73ffffffffffffffffffffffffffffffffffffffff166119ea61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fd8565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060018054611a6c90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890614484565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b5050505050905090565b600060011515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b611ba36126de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613e78565b60405180910390fd5b8060056000611c1e6126de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccb6126de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d109190613d7b565b60405180910390a35050565b611d246126de565b73ffffffffffffffffffffffffffffffffffffffff16611d4261199a565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613fd8565b60405180910390fd5b80600b8190555050565b611db3611dad6126de565b83612813565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614058565b60405180910390fd5b611dfe84848484612d1b565b50505050565b611e0c6126de565b73ffffffffffffffffffffffffffffffffffffffff16611e2a61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613fd8565b60405180910390fd5b60005b8251811015611ffb576001600e6000858481518110611ecb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f6000858481518110611fa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ff3906144e7565b915050611e83565b505050565b6120086126de565b73ffffffffffffffffffffffffffffffffffffffff1661202661199a565b73ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613fd8565b60405180910390fd5b60008111801561208e5750600a548111155b6120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490613e38565b60405180910390fd5b600954816008546120de91906142a7565b111561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613db8565b60405180910390fd5b600b548161212d919061432e565b341461216e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612165906140f8565b60405180910390fd5b61217661199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156121bb573d6000803e3d6000fd5b506121c46126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e15600160085461220a91906142a7565b8360405161221992919061415c565b60405180910390a260005b818110156122725761225f6122376126de565b6008600081548092919061224a906144e7565b91905055600161225a91906142a7565b612b4d565b808061226a906144e7565b915050612224565b5050565b606061228182612672565b6122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b790613f98565b60405180910390fd5b60006006600084815260200190815260200160002080546122e090614484565b80601f016020809104026020016040519081016040528092919081815260200182805461230c90614484565b80156123595780601f1061232e57610100808354040283529160200191612359565b820191906000526020600020905b81548152906001019060200180831161233c57829003601f168201915b50505050509050600061236a612d77565b90506000815114156123805781925050506123c3565b6000825111156123b557808260405160200161239d929190613cf0565b604051602081830303815290604052925050506123c3565b6123be84612e09565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124646126de565b73ffffffffffffffffffffffffffffffffffffffff1661248261199a565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90613df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661275983611087565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127a882612672565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90613f38565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061280e92919061320c565b505050565b600061281e82612672565b61285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490613eb8565b60405180910390fd5b600061286883611087565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d757508373ffffffffffffffffffffffffffffffffffffffff166128bf846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e857506128e781856123c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661291182611087565b73ffffffffffffffffffffffffffffffffffffffff1614612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90613ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ce90613e58565b60405180910390fd5b6129e2838383612eb0565b6129ed6000826126e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3d9190614388565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9491906142a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490613f78565b60405180910390fd5b612bc681612672565b15612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613e18565b60405180910390fd5b612c1260008383612eb0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6291906142a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612d268484846128f1565b612d3284848484612eb5565b612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890613dd8565b60405180910390fd5b50505050565b6060600c8054612d8690614484565b80601f0160208091040260200160405190810160405280929190818152602001828054612db290614484565b8015612dff5780601f10612dd457610100808354040283529160200191612dff565b820191906000526020600020905b815481529060010190602001808311612de257829003601f168201915b5050505050905090565b6060612e1482612672565b612e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4a90614018565b60405180910390fd5b6000612e5d612d77565b90506000815111612e7d5760405180602001604052806000815250612ea8565b80612e878461304c565b604051602001612e98929190613cf0565b6040516020818303038152906040525b915050919050565b505050565b6000612ed68473ffffffffffffffffffffffffffffffffffffffff166131f9565b1561303f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eff6126de565b8786866040518563ffffffff1660e01b8152600401612f219493929190613d2f565b602060405180830381600087803b158015612f3b57600080fd5b505af1925050508015612f6c57506040513d601f19601f82011682018060405250810190612f699190613779565b60015b612fef573d8060008114612f9c576040519150601f19603f3d011682016040523d82523d6000602084013e612fa1565b606091505b50600081511415612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90613dd8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613044565b600190505b949350505050565b60606000821415613094576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131f4565b600082905060005b600082146130c65780806130af906144e7565b915050600a826130bf91906142fd565b915061309c565b60008167ffffffffffffffff811115613108577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561313a5781602001600182028036833780820191505090505b5090505b600085146131ed576001826131539190614388565b9150600a856131629190614530565b603061316e91906142a7565b60f81b8183815181106131aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131e691906142fd565b945061313e565b8093505050505b919050565b600080823b905060008111915050919050565b82805461321890614484565b90600052602060002090601f01602090048101928261323a5760008555613281565b82601f1061325357805160ff1916838001178555613281565b82800160010185558215613281579182015b82811115613280578251825591602001919060010190613265565b5b50905061328e9190613292565b5090565b5b808211156132ab576000816000905550600101613293565b5090565b60006132c26132bd846141aa565b614185565b905080838252602082019050828560208602820111156132e157600080fd5b60005b8581101561331157816132f78882613403565b8452602084019350602083019250506001810190506132e4565b5050509392505050565b600061332e613329846141d6565b614185565b9050808382526020820190508285602086028201111561334d57600080fd5b60005b8581101561337d578161336388826134ff565b845260208401935060208301925050600181019050613350565b5050509392505050565b600061339a61339584614202565b614185565b9050828152602081018484840111156133b257600080fd5b6133bd848285614442565b509392505050565b60006133d86133d384614233565b614185565b9050828152602081018484840111156133f057600080fd5b6133fb848285614442565b509392505050565b60008135905061341281614cbb565b92915050565b600082601f83011261342957600080fd5b81356134398482602086016132af565b91505092915050565b600082601f83011261345357600080fd5b813561346384826020860161331b565b91505092915050565b60008135905061347b81614cd2565b92915050565b60008135905061349081614ce9565b92915050565b6000815190506134a581614ce9565b92915050565b600082601f8301126134bc57600080fd5b81356134cc848260208601613387565b91505092915050565b600082601f8301126134e657600080fd5b81356134f68482602086016133c5565b91505092915050565b60008135905061350e81614d00565b92915050565b60006020828403121561352657600080fd5b600061353484828501613403565b91505092915050565b6000806040838503121561355057600080fd5b600061355e85828601613403565b925050602061356f85828601613403565b9150509250929050565b60008060006060848603121561358e57600080fd5b600061359c86828701613403565b93505060206135ad86828701613403565b92505060406135be868287016134ff565b9150509250925092565b600080600080608085870312156135de57600080fd5b60006135ec87828801613403565b94505060206135fd87828801613403565b935050604061360e878288016134ff565b925050606085013567ffffffffffffffff81111561362b57600080fd5b613637878288016134ab565b91505092959194509250565b6000806040838503121561365657600080fd5b600061366485828601613403565b92505060206136758582860161346c565b9150509250929050565b6000806040838503121561369257600080fd5b60006136a085828601613403565b92505060206136b1858286016134ff565b9150509250929050565b600080604083850312156136ce57600080fd5b600083013567ffffffffffffffff8111156136e857600080fd5b6136f485828601613418565b925050602083013567ffffffffffffffff81111561371157600080fd5b61371d85828601613442565b9150509250929050565b60006020828403121561373957600080fd5b60006137478482850161346c565b91505092915050565b60006020828403121561376257600080fd5b600061377084828501613481565b91505092915050565b60006020828403121561378b57600080fd5b600061379984828501613496565b91505092915050565b6000602082840312156137b457600080fd5b600082013567ffffffffffffffff8111156137ce57600080fd5b6137da848285016134d5565b91505092915050565b6000602082840312156137f557600080fd5b6000613803848285016134ff565b91505092915050565b6000806040838503121561381f57600080fd5b600061382d858286016134ff565b925050602083013567ffffffffffffffff81111561384a57600080fd5b613856858286016134d5565b9150509250929050565b613869816143bc565b82525050565b613878816143ce565b82525050565b600061388982614264565b613893818561427a565b93506138a3818560208601614451565b6138ac8161461d565b840191505092915050565b6138c081614430565b82525050565b60006138d18261426f565b6138db818561428b565b93506138eb818560208601614451565b6138f48161461d565b840191505092915050565b600061390a8261426f565b613914818561429c565b9350613924818560208601614451565b80840191505092915050565b600061393d60088361428b565b91506139488261462e565b602082019050919050565b600061396060328361428b565b915061396b82614657565b604082019050919050565b600061398360268361428b565b915061398e826146a6565b604082019050919050565b60006139a6601c8361428b565b91506139b1826146f5565b602082019050919050565b60006139c960118361428b565b91506139d48261471e565b602082019050919050565b60006139ec60248361428b565b91506139f782614747565b604082019050919050565b6000613a0f60198361428b565b9150613a1a82614796565b602082019050919050565b6000613a32601c8361428b565b9150613a3d826147bf565b602082019050919050565b6000613a55602c8361428b565b9150613a60826147e8565b604082019050919050565b6000613a7860388361428b565b9150613a8382614837565b604082019050919050565b6000613a9b602a8361428b565b9150613aa682614886565b604082019050919050565b6000613abe60298361428b565b9150613ac9826148d5565b604082019050919050565b6000613ae1602e8361428b565b9150613aec82614924565b604082019050919050565b6000613b04601c8361428b565b9150613b0f82614973565b602082019050919050565b6000613b2760208361428b565b9150613b328261499c565b602082019050919050565b6000613b4a60318361428b565b9150613b55826149c5565b604082019050919050565b6000613b6d602c8361428b565b9150613b7882614a14565b604082019050919050565b6000613b9060208361428b565b9150613b9b82614a63565b602082019050919050565b6000613bb360298361428b565b9150613bbe82614a8c565b604082019050919050565b6000613bd6602f8361428b565b9150613be182614adb565b604082019050919050565b6000613bf960218361428b565b9150613c0482614b2a565b604082019050919050565b6000613c1c60318361428b565b9150613c2782614b79565b604082019050919050565b6000613c3f60108361428b565b9150613c4a82614bc8565b602082019050919050565b6000613c6260308361428b565b9150613c6d82614bf1565b604082019050919050565b6000613c85600b8361428b565b9150613c9082614c40565b602082019050919050565b6000613ca8601f8361428b565b9150613cb382614c69565b602082019050919050565b6000613ccb600b8361428b565b9150613cd682614c92565b602082019050919050565b613cea81614426565b82525050565b6000613cfc82856138ff565b9150613d0882846138ff565b91508190509392505050565b6000602082019050613d296000830184613860565b92915050565b6000608082019050613d446000830187613860565b613d516020830186613860565b613d5e6040830185613ce1565b8181036060830152613d70818461387e565b905095945050505050565b6000602082019050613d90600083018461386f565b92915050565b60006020820190508181036000830152613db081846138c6565b905092915050565b60006020820190508181036000830152613dd181613930565b9050919050565b60006020820190508181036000830152613df181613953565b9050919050565b60006020820190508181036000830152613e1181613976565b9050919050565b60006020820190508181036000830152613e3181613999565b9050919050565b60006020820190508181036000830152613e51816139bc565b9050919050565b60006020820190508181036000830152613e71816139df565b9050919050565b60006020820190508181036000830152613e9181613a02565b9050919050565b60006020820190508181036000830152613eb181613a25565b9050919050565b60006020820190508181036000830152613ed181613a48565b9050919050565b60006020820190508181036000830152613ef181613a6b565b9050919050565b60006020820190508181036000830152613f1181613a8e565b9050919050565b60006020820190508181036000830152613f3181613ab1565b9050919050565b60006020820190508181036000830152613f5181613ad4565b9050919050565b60006020820190508181036000830152613f7181613af7565b9050919050565b60006020820190508181036000830152613f9181613b1a565b9050919050565b60006020820190508181036000830152613fb181613b3d565b9050919050565b60006020820190508181036000830152613fd181613b60565b9050919050565b60006020820190508181036000830152613ff181613b83565b9050919050565b6000602082019050818103600083015261401181613ba6565b9050919050565b6000602082019050818103600083015261403181613bc9565b9050919050565b6000602082019050818103600083015261405181613bec565b9050919050565b6000602082019050818103600083015261407181613c0f565b9050919050565b6000602082019050818103600083015261409181613c32565b9050919050565b600060208201905081810360008301526140b181613c55565b9050919050565b600060208201905081810360008301526140d181613c78565b9050919050565b600060208201905081810360008301526140f181613c9b565b9050919050565b6000602082019050818103600083015261411181613cbe565b9050919050565b600060208201905061412d6000830184613ce1565b92915050565b60006040820190506141486000830185613ce1565b61415560208301846138b7565b9392505050565b60006040820190506141716000830185613ce1565b61417e6020830184613ce1565b9392505050565b600061418f6141a0565b905061419b82826144b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156141c5576141c46145ee565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141f1576141f06145ee565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421d5761421c6145ee565b5b6142268261461d565b9050602081019050919050565b600067ffffffffffffffff82111561424e5761424d6145ee565b5b6142578261461d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b282614426565b91506142bd83614426565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f2576142f1614561565b5b828201905092915050565b600061430882614426565b915061431383614426565b92508261432357614322614590565b5b828204905092915050565b600061433982614426565b915061434483614426565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437d5761437c614561565b5b828202905092915050565b600061439382614426565b915061439e83614426565b9250828210156143b1576143b0614561565b5b828203905092915050565b60006143c782614406565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061443b82614426565b9050919050565b82818337600083830152505050565b60005b8381101561446f578082015181840152602081019050614454565b8381111561447e576000848401525b50505050565b6000600282049050600182168061449c57607f821691505b602082108114156144b0576144af6145bf565b5b50919050565b6144bf8261461d565b810181811067ffffffffffffffff821117156144de576144dd6145ee565b5b80604052505050565b60006144f282614426565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452557614524614561565b5b600182019050919050565b600061453b82614426565b915061454683614426565b92508261455657614555614590565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f746f6f206d756368000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e742077726f6e67206e756d626572000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d696e74206c696d697420666f7220616464726573732e00000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f496e636f7272656374207472616e73616374696f6e2076616c75652e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008201527f6c6c656374696f6e20616d6f756e742e00000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e00600082015250565b7f76616c7565206572726f72000000000000000000000000000000000000000000600082015250565b614cc4816143bc565b8114614ccf57600080fd5b50565b614cdb816143ce565b8114614ce657600080fd5b50565b614cf2816143da565b8114614cfd57600080fd5b50565b614d0981614426565b8114614d1457600080fd5b5056fea2646970667358221220afc39536a5d797ae1de85b4d9b8576f9d63d698a3ea9454d3d6bc11234f4a7ca64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c446972747920446576696c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a08231116101235780639afdf2f3116100ab578063bffb26ce1161006f578063bffb26ce146107a1578063c1f26123146107ca578063c87b56dd146107e6578063e985e9c514610823578063f2fde38b146108605761021a565b80639afdf2f3146106be578063a035b1fe146106fb578063a22cb46514610726578063a2b40d191461074f578063b88d4fde146107785761021a565b806388eae705116100f257806388eae705146105d75780638da5cb5b14610602578063917bb57f1461062d57806395d89b41146106565780639a313299146106815761021a565b806370a082311461054b578063715018a6146105885780637a5fe4281461059f578063868ff4a2146105bb5761021a565b806334eafb11116101a65780635f4f603d116101755780635f4f603d146104645780636352211e1461048d57806367765b87146104ca5780636a36bd83146104f55780636c0360eb146105205761021a565b806334eafb11146103be5780633c49a8a9146103e957806342842e0e1461041257806355f804b31461043b5761021a565b8063162094c4116101ed578063162094c4146102ed57806318160ddd146103165780631f2698ab14610341578063214405fc1461036c57806323b872dd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613750565b610889565b6040516102539190613d7b565b60405180910390f35b34801561026857600080fd5b5061027161096b565b60405161027e9190613d96565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137e3565b6109fd565b6040516102bb9190613d14565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061367f565b610a82565b005b3480156102f957600080fd5b50610314600480360381019061030f919061380c565b610b9a565b005b34801561032257600080fd5b5061032b610c24565b6040516103389190614118565b60405180910390f35b34801561034d57600080fd5b50610356610c2e565b6040516103639190613d7b565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061367f565b610c41565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190613579565b610d75565b005b3480156103ca57600080fd5b506103d3610dd5565b6040516103e09190614118565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613514565b610ddb565b005b34801561041e57600080fd5b5061043960048036038101906104349190613579565b610f38565b005b34801561044757600080fd5b50610462600480360381019061045d91906137a2565b610f58565b005b34801561047057600080fd5b5061048b60048036038101906104869190613727565b610fee565b005b34801561049957600080fd5b506104b460048036038101906104af91906137e3565b611087565b6040516104c19190613d14565b60405180910390f35b3480156104d657600080fd5b506104df611139565b6040516104ec9190614118565b60405180910390f35b34801561050157600080fd5b5061050a61113f565b6040516105179190614118565b60405180910390f35b34801561052c57600080fd5b50610535611145565b6040516105429190613d96565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613514565b6111d3565b60405161057f9190614118565b60405180910390f35b34801561059457600080fd5b5061059d61128b565b005b6105b960048036038101906105b491906137e3565b6113c8565b005b6105d560048036038101906105d091906137e3565b611611565b005b3480156105e357600080fd5b506105ec611987565b6040516105f99190613d7b565b60405180910390f35b34801561060e57600080fd5b5061061761199a565b6040516106249190613d14565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613727565b6119c4565b005b34801561066257600080fd5b5061066b611a5d565b6040516106789190613d96565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613514565b611aef565b6040516106b59190613d7b565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613514565b611b4c565b6040516106f29190614118565b60405180910390f35b34801561070757600080fd5b50610710611b95565b60405161071d9190614118565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613643565b611b9b565b005b34801561075b57600080fd5b50610776600480360381019061077191906137e3565b611d1c565b005b34801561078457600080fd5b5061079f600480360381019061079a91906135c8565b611da2565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906136bb565b611e04565b005b6107e460048036038101906107df91906137e3565b612000565b005b3480156107f257600080fd5b5061080d600480360381019061080891906137e3565b612276565b60405161081a9190613d96565b60405180910390f35b34801561082f57600080fd5b5061084a6004803603810190610845919061353d565b6123c8565b6040516108579190613d7b565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613514565b61245c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610964575061096382612608565b5b9050919050565b60606000805461097a90614484565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690614484565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a0882612672565b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90613fb8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8d82611087565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590614038565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1d6126de565b73ffffffffffffffffffffffffffffffffffffffff161480610b4c5750610b4b81610b466126de565b6123c8565b5b610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290613ed8565b60405180910390fd5b610b9583836126e6565b505050565b610ba26126de565b73ffffffffffffffffffffffffffffffffffffffff16610bc061199a565b73ffffffffffffffffffffffffffffffffffffffff1614610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613fd8565b60405180910390fd5b610c20828261279f565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610c496126de565b73ffffffffffffffffffffffffffffffffffffffff16610c6761199a565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613fd8565b60405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106000815480929190610d6c906144e7565b91905055505050565b610d86610d806126de565b82612813565b610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90614058565b60405180910390fd5b610dd08383836128f1565b505050565b60095481565b610de36126de565b73ffffffffffffffffffffffffffffffffffffffff16610e0161199a565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613fd8565b60405180910390fd5b6009546001600854610e6991906142a7565b1115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614098565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e156001600854610ef191906142a7565b6001604051610f01929190614133565b60405180910390a2610f358160086000815480929190610f20906144e7565b919050556001610f3091906142a7565b612b4d565b50565b610f5383838360405180602001604052806000815250611da2565b505050565b610f606126de565b73ffffffffffffffffffffffffffffffffffffffff16610f7e61199a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613fd8565b60405180910390fd5b80600c9080519060200190610fea92919061320c565b5050565b610ff66126de565b73ffffffffffffffffffffffffffffffffffffffff1661101461199a565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613fd8565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613f18565b60405180910390fd5b80915050919050565b600a5481565b60085481565b600c805461115290614484565b80601f016020809104026020016040519081016040528092919081815260200182805461117e90614484565b80156111cb5780601f106111a0576101008083540402835291602001916111cb565b820191906000526020600020905b8154815290600101906020018083116111ae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613ef8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112936126de565b73ffffffffffffffffffffffffffffffffffffffff166112b161199a565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff16611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906140b8565b60405180910390fd5b6000811180156114295750600a548111155b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613e38565b60405180910390fd5b6009548160085461147991906142a7565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613db8565b60405180910390fd5b600b54816114c8919061432e565b3414611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906140f8565b60405180910390fd5b61151161199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611556573d6000803e3d6000fd5b5061155f6126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e1560016008546115a591906142a7565b836040516115b492919061415c565b60405180910390a260005b8181101561160d576115fa6115d26126de565b600860008154809291906115e5906144e7565b9190505560016115f591906142a7565b612b4d565b8080611605906144e7565b9150506115bf565b5050565b600d60019054906101000a900460ff16611660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611657906140d8565b60405180910390fd5b60011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90614078565b60405180910390fd5b600081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117409190614388565b1015611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613e98565b60405180910390fd5b6009548160085461179291906142a7565b11156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614098565b60405180910390fd5b600b54816117e1919061432e565b3414611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613f58565b60405180910390fd5b61182a61199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561186f573d6000803e3d6000fd5b5080600f600061187d6126de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c69190614388565b925050819055506118d56126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e15600160085461191b91906142a7565b8360405161192a92919061415c565b60405180910390a260005b81811015611983576119706119486126de565b6008600081548092919061195b906144e7565b91905055600161196b91906142a7565b612b4d565b808061197b906144e7565b915050611935565b5050565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119cc6126de565b73ffffffffffffffffffffffffffffffffffffffff166119ea61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fd8565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060018054611a6c90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9890614484565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b5050505050905090565b600060011515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b611ba36126de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613e78565b60405180910390fd5b8060056000611c1e6126de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ccb6126de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d109190613d7b565b60405180910390a35050565b611d246126de565b73ffffffffffffffffffffffffffffffffffffffff16611d4261199a565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613fd8565b60405180910390fd5b80600b8190555050565b611db3611dad6126de565b83612813565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614058565b60405180910390fd5b611dfe84848484612d1b565b50505050565b611e0c6126de565b73ffffffffffffffffffffffffffffffffffffffff16611e2a61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613fd8565b60405180910390fd5b60005b8251811015611ffb576001600e6000858481518110611ecb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f6000858481518110611fa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ff3906144e7565b915050611e83565b505050565b6120086126de565b73ffffffffffffffffffffffffffffffffffffffff1661202661199a565b73ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613fd8565b60405180910390fd5b60008111801561208e5750600a548111155b6120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490613e38565b60405180910390fd5b600954816008546120de91906142a7565b111561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613db8565b60405180910390fd5b600b548161212d919061432e565b341461216e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612165906140f8565b60405180910390fd5b61217661199a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156121bb573d6000803e3d6000fd5b506121c46126de565b73ffffffffffffffffffffffffffffffffffffffff167f4787026cc9cdefb3624ce1629d18590b07bbcdb4c00596d7e15524b3b8d99e15600160085461220a91906142a7565b8360405161221992919061415c565b60405180910390a260005b818110156122725761225f6122376126de565b6008600081548092919061224a906144e7565b91905055600161225a91906142a7565b612b4d565b808061226a906144e7565b915050612224565b5050565b606061228182612672565b6122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b790613f98565b60405180910390fd5b60006006600084815260200190815260200160002080546122e090614484565b80601f016020809104026020016040519081016040528092919081815260200182805461230c90614484565b80156123595780601f1061232e57610100808354040283529160200191612359565b820191906000526020600020905b81548152906001019060200180831161233c57829003601f168201915b50505050509050600061236a612d77565b90506000815114156123805781925050506123c3565b6000825111156123b557808260405160200161239d929190613cf0565b604051602081830303815290604052925050506123c3565b6123be84612e09565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124646126de565b73ffffffffffffffffffffffffffffffffffffffff1661248261199a565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf90613fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90613df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661275983611087565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127a882612672565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90613f38565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061280e92919061320c565b505050565b600061281e82612672565b61285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490613eb8565b60405180910390fd5b600061286883611087565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d757508373ffffffffffffffffffffffffffffffffffffffff166128bf846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e857506128e781856123c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661291182611087565b73ffffffffffffffffffffffffffffffffffffffff1614612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90613ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ce90613e58565b60405180910390fd5b6129e2838383612eb0565b6129ed6000826126e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3d9190614388565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9491906142a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490613f78565b60405180910390fd5b612bc681612672565b15612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613e18565b60405180910390fd5b612c1260008383612eb0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6291906142a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612d268484846128f1565b612d3284848484612eb5565b612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890613dd8565b60405180910390fd5b50505050565b6060600c8054612d8690614484565b80601f0160208091040260200160405190810160405280929190818152602001828054612db290614484565b8015612dff5780601f10612dd457610100808354040283529160200191612dff565b820191906000526020600020905b815481529060010190602001808311612de257829003601f168201915b5050505050905090565b6060612e1482612672565b612e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4a90614018565b60405180910390fd5b6000612e5d612d77565b90506000815111612e7d5760405180602001604052806000815250612ea8565b80612e878461304c565b604051602001612e98929190613cf0565b6040516020818303038152906040525b915050919050565b505050565b6000612ed68473ffffffffffffffffffffffffffffffffffffffff166131f9565b1561303f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eff6126de565b8786866040518563ffffffff1660e01b8152600401612f219493929190613d2f565b602060405180830381600087803b158015612f3b57600080fd5b505af1925050508015612f6c57506040513d601f19601f82011682018060405250810190612f699190613779565b60015b612fef573d8060008114612f9c576040519150601f19603f3d011682016040523d82523d6000602084013e612fa1565b606091505b50600081511415612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90613dd8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613044565b600190505b949350505050565b60606000821415613094576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131f4565b600082905060005b600082146130c65780806130af906144e7565b915050600a826130bf91906142fd565b915061309c565b60008167ffffffffffffffff811115613108577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561313a5781602001600182028036833780820191505090505b5090505b600085146131ed576001826131539190614388565b9150600a856131629190614530565b603061316e91906142a7565b60f81b8183815181106131aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131e691906142fd565b945061313e565b8093505050505b919050565b600080823b905060008111915050919050565b82805461321890614484565b90600052602060002090601f01602090048101928261323a5760008555613281565b82601f1061325357805160ff1916838001178555613281565b82800160010185558215613281579182015b82811115613280578251825591602001919060010190613265565b5b50905061328e9190613292565b5090565b5b808211156132ab576000816000905550600101613293565b5090565b60006132c26132bd846141aa565b614185565b905080838252602082019050828560208602820111156132e157600080fd5b60005b8581101561331157816132f78882613403565b8452602084019350602083019250506001810190506132e4565b5050509392505050565b600061332e613329846141d6565b614185565b9050808382526020820190508285602086028201111561334d57600080fd5b60005b8581101561337d578161336388826134ff565b845260208401935060208301925050600181019050613350565b5050509392505050565b600061339a61339584614202565b614185565b9050828152602081018484840111156133b257600080fd5b6133bd848285614442565b509392505050565b60006133d86133d384614233565b614185565b9050828152602081018484840111156133f057600080fd5b6133fb848285614442565b509392505050565b60008135905061341281614cbb565b92915050565b600082601f83011261342957600080fd5b81356134398482602086016132af565b91505092915050565b600082601f83011261345357600080fd5b813561346384826020860161331b565b91505092915050565b60008135905061347b81614cd2565b92915050565b60008135905061349081614ce9565b92915050565b6000815190506134a581614ce9565b92915050565b600082601f8301126134bc57600080fd5b81356134cc848260208601613387565b91505092915050565b600082601f8301126134e657600080fd5b81356134f68482602086016133c5565b91505092915050565b60008135905061350e81614d00565b92915050565b60006020828403121561352657600080fd5b600061353484828501613403565b91505092915050565b6000806040838503121561355057600080fd5b600061355e85828601613403565b925050602061356f85828601613403565b9150509250929050565b60008060006060848603121561358e57600080fd5b600061359c86828701613403565b93505060206135ad86828701613403565b92505060406135be868287016134ff565b9150509250925092565b600080600080608085870312156135de57600080fd5b60006135ec87828801613403565b94505060206135fd87828801613403565b935050604061360e878288016134ff565b925050606085013567ffffffffffffffff81111561362b57600080fd5b613637878288016134ab565b91505092959194509250565b6000806040838503121561365657600080fd5b600061366485828601613403565b92505060206136758582860161346c565b9150509250929050565b6000806040838503121561369257600080fd5b60006136a085828601613403565b92505060206136b1858286016134ff565b9150509250929050565b600080604083850312156136ce57600080fd5b600083013567ffffffffffffffff8111156136e857600080fd5b6136f485828601613418565b925050602083013567ffffffffffffffff81111561371157600080fd5b61371d85828601613442565b9150509250929050565b60006020828403121561373957600080fd5b60006137478482850161346c565b91505092915050565b60006020828403121561376257600080fd5b600061377084828501613481565b91505092915050565b60006020828403121561378b57600080fd5b600061379984828501613496565b91505092915050565b6000602082840312156137b457600080fd5b600082013567ffffffffffffffff8111156137ce57600080fd5b6137da848285016134d5565b91505092915050565b6000602082840312156137f557600080fd5b6000613803848285016134ff565b91505092915050565b6000806040838503121561381f57600080fd5b600061382d858286016134ff565b925050602083013567ffffffffffffffff81111561384a57600080fd5b613856858286016134d5565b9150509250929050565b613869816143bc565b82525050565b613878816143ce565b82525050565b600061388982614264565b613893818561427a565b93506138a3818560208601614451565b6138ac8161461d565b840191505092915050565b6138c081614430565b82525050565b60006138d18261426f565b6138db818561428b565b93506138eb818560208601614451565b6138f48161461d565b840191505092915050565b600061390a8261426f565b613914818561429c565b9350613924818560208601614451565b80840191505092915050565b600061393d60088361428b565b91506139488261462e565b602082019050919050565b600061396060328361428b565b915061396b82614657565b604082019050919050565b600061398360268361428b565b915061398e826146a6565b604082019050919050565b60006139a6601c8361428b565b91506139b1826146f5565b602082019050919050565b60006139c960118361428b565b91506139d48261471e565b602082019050919050565b60006139ec60248361428b565b91506139f782614747565b604082019050919050565b6000613a0f60198361428b565b9150613a1a82614796565b602082019050919050565b6000613a32601c8361428b565b9150613a3d826147bf565b602082019050919050565b6000613a55602c8361428b565b9150613a60826147e8565b604082019050919050565b6000613a7860388361428b565b9150613a8382614837565b604082019050919050565b6000613a9b602a8361428b565b9150613aa682614886565b604082019050919050565b6000613abe60298361428b565b9150613ac9826148d5565b604082019050919050565b6000613ae1602e8361428b565b9150613aec82614924565b604082019050919050565b6000613b04601c8361428b565b9150613b0f82614973565b602082019050919050565b6000613b2760208361428b565b9150613b328261499c565b602082019050919050565b6000613b4a60318361428b565b9150613b55826149c5565b604082019050919050565b6000613b6d602c8361428b565b9150613b7882614a14565b604082019050919050565b6000613b9060208361428b565b9150613b9b82614a63565b602082019050919050565b6000613bb360298361428b565b9150613bbe82614a8c565b604082019050919050565b6000613bd6602f8361428b565b9150613be182614adb565b604082019050919050565b6000613bf960218361428b565b9150613c0482614b2a565b604082019050919050565b6000613c1c60318361428b565b9150613c2782614b79565b604082019050919050565b6000613c3f60108361428b565b9150613c4a82614bc8565b602082019050919050565b6000613c6260308361428b565b9150613c6d82614bf1565b604082019050919050565b6000613c85600b8361428b565b9150613c9082614c40565b602082019050919050565b6000613ca8601f8361428b565b9150613cb382614c69565b602082019050919050565b6000613ccb600b8361428b565b9150613cd682614c92565b602082019050919050565b613cea81614426565b82525050565b6000613cfc82856138ff565b9150613d0882846138ff565b91508190509392505050565b6000602082019050613d296000830184613860565b92915050565b6000608082019050613d446000830187613860565b613d516020830186613860565b613d5e6040830185613ce1565b8181036060830152613d70818461387e565b905095945050505050565b6000602082019050613d90600083018461386f565b92915050565b60006020820190508181036000830152613db081846138c6565b905092915050565b60006020820190508181036000830152613dd181613930565b9050919050565b60006020820190508181036000830152613df181613953565b9050919050565b60006020820190508181036000830152613e1181613976565b9050919050565b60006020820190508181036000830152613e3181613999565b9050919050565b60006020820190508181036000830152613e51816139bc565b9050919050565b60006020820190508181036000830152613e71816139df565b9050919050565b60006020820190508181036000830152613e9181613a02565b9050919050565b60006020820190508181036000830152613eb181613a25565b9050919050565b60006020820190508181036000830152613ed181613a48565b9050919050565b60006020820190508181036000830152613ef181613a6b565b9050919050565b60006020820190508181036000830152613f1181613a8e565b9050919050565b60006020820190508181036000830152613f3181613ab1565b9050919050565b60006020820190508181036000830152613f5181613ad4565b9050919050565b60006020820190508181036000830152613f7181613af7565b9050919050565b60006020820190508181036000830152613f9181613b1a565b9050919050565b60006020820190508181036000830152613fb181613b3d565b9050919050565b60006020820190508181036000830152613fd181613b60565b9050919050565b60006020820190508181036000830152613ff181613b83565b9050919050565b6000602082019050818103600083015261401181613ba6565b9050919050565b6000602082019050818103600083015261403181613bc9565b9050919050565b6000602082019050818103600083015261405181613bec565b9050919050565b6000602082019050818103600083015261407181613c0f565b9050919050565b6000602082019050818103600083015261409181613c32565b9050919050565b600060208201905081810360008301526140b181613c55565b9050919050565b600060208201905081810360008301526140d181613c78565b9050919050565b600060208201905081810360008301526140f181613c9b565b9050919050565b6000602082019050818103600083015261411181613cbe565b9050919050565b600060208201905061412d6000830184613ce1565b92915050565b60006040820190506141486000830185613ce1565b61415560208301846138b7565b9392505050565b60006040820190506141716000830185613ce1565b61417e6020830184613ce1565b9392505050565b600061418f6141a0565b905061419b82826144b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156141c5576141c46145ee565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141f1576141f06145ee565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421d5761421c6145ee565b5b6142268261461d565b9050602081019050919050565b600067ffffffffffffffff82111561424e5761424d6145ee565b5b6142578261461d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b282614426565b91506142bd83614426565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f2576142f1614561565b5b828201905092915050565b600061430882614426565b915061431383614426565b92508261432357614322614590565b5b828204905092915050565b600061433982614426565b915061434483614426565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437d5761437c614561565b5b828202905092915050565b600061439382614426565b915061439e83614426565b9250828210156143b1576143b0614561565b5b828203905092915050565b60006143c782614406565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061443b82614426565b9050919050565b82818337600083830152505050565b60005b8381101561446f578082015181840152602081019050614454565b8381111561447e576000848401525b50505050565b6000600282049050600182168061449c57607f821691505b602082108114156144b0576144af6145bf565b5b50919050565b6144bf8261461d565b810181811067ffffffffffffffff821117156144de576144dd6145ee565b5b80604052505050565b60006144f282614426565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452557614524614561565b5b600182019050919050565b600061453b82614426565b915061454683614426565b92508261455657614555614590565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f746f6f206d756368000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e742077726f6e67206e756d626572000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d696e74206c696d697420666f7220616464726573732e00000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f496e636f7272656374207472616e73616374696f6e2076616c75652e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008201527f6c6c656374696f6e20616d6f756e742e00000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e00600082015250565b7f76616c7565206572726f72000000000000000000000000000000000000000000600082015250565b614cc4816143bc565b8114614ccf57600080fd5b50565b614cdb816143ce565b8114614ce657600080fd5b50565b614cf2816143da565b8114614cfd57600080fd5b50565b614d0981614426565b8114614d1457600080fd5b5056fea2646970667358221220afc39536a5d797ae1de85b4d9b8576f9d63d698a3ea9454d3d6bc11234f4a7ca64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c446972747920446576696c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Dirty Devils
Arg [1] : symbol_ (string): DD
Arg [2] : baseURI_ (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 446972747920446576696c730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4444000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36886:4542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20778:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23181:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22715:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38320:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37890:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37258:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40748:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24076:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37072:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40467:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24454:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38113:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38563:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21406:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37123:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37039:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37230:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21135:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36290:148;;;;;;;;;;;;;:::i;:::-;;38819:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39822:627;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37284:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35637:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38462:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21883:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41286:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38674:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37171:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23476:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38218:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24677:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40963:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39319:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33047:682;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23844:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36594:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20778:292;20880:4;20919:25;20904:40;;;:11;:40;;;;:105;;;;20976:33;20961:48;;;:11;:48;;;;20904:105;:158;;;;21026:36;21050:11;21026:23;:36::i;:::-;20904:158;20897:165;;20778:292;;;:::o;21713:100::-;21767:13;21800:5;21793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21713:100;:::o;23181:222::-;23257:7;23285:16;23293:7;23285;:16::i;:::-;23277:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23371:15;:24;23387:7;23371:24;;;;;;;;;;;;;;;;;;;;;23364:31;;23181:222;;;:::o;22715:399::-;22796:13;22812:23;22827:7;22812:14;:23::i;:::-;22796:39;;22860:5;22854:11;;:2;:11;;;;22846:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22941:5;22925:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22950:37;22967:5;22974:12;:10;:12::i;:::-;22950:16;:37::i;:::-;22925:62;22917:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23085:21;23094:2;23098:7;23085:8;:21::i;:::-;22715:399;;;:::o;38320:133::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38412:33:::1;38425:8;38435:9;38412:12;:33::i;:::-;38320:133:::0;;:::o;37890:98::-;37942:7;37969:11;;37962:18;;37890:98;:::o;37258:19::-;;;;;;;;;;;;;:::o;40748:203::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40854:4:::1;40835:9;:16;40845:5;40835:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;40897:13;40869:18;:25;40888:5;40869:25;;;;;;;;;;;;;;;:41;;;;40921:20;;:22;;;;;;;;;:::i;:::-;;;;;;40748:203:::0;;:::o;24076:306::-;24237:41;24256:12;:10;:12::i;:::-;24270:7;24237:18;:41::i;:::-;24229:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24346:28;24356:4;24362:2;24366:7;24346:9;:28::i;:::-;24076:306;;;:::o;37072:32::-;;;;:::o;40467:262::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:10:::1;;40560:1;40546:11;;:15;;;;:::i;:::-;:29;;40538:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;40655:5;40644:35;;;40674:1;40662:11;;:13;;;;:::i;:::-;40677:1;40644:35;;;;;;;:::i;:::-;;;;;;;;40690:31;40696:5;40707:11;;:13;;;;;;;;;:::i;:::-;;;;;40703:1;:17;;;;:::i;:::-;40690:5;:31::i;:::-;40467:262:::0;:::o;24454:151::-;24558:39;24575:4;24581:2;24585:7;24558:39;;;;;;;;;;;;:16;:39::i;:::-;24454:151;;;:::o;38113:96::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38194:7:::1;38184;:17;;;;;;;;;;;;:::i;:::-;;38113:96:::0;:::o;38563:99::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38648:6:::1;38631:14;;:23;;;;;;;;;;;;;;;;;;38563:99:::0;:::o;21406:239::-;21478:7;21498:13;21514:7;:16;21522:7;21514:16;;;;;;;;;;;;;;;;;;;;;21498:32;;21566:1;21549:19;;:5;:19;;;;21541:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21632:5;21625:12;;;21406:239;;;:::o;37123:28::-;;;;:::o;37039:26::-;;;;:::o;37230:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21135:208::-;21207:7;21252:1;21235:19;;:5;:19;;;;21227:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21319:9;:16;21329:5;21319:16;;;;;;;;;;;;;;;;21312:23;;21135:208;;;:::o;36290:148::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36397:1:::1;36360:40;;36381:6;;;;;;;;;;;36360:40;;;;;;;;;;;;36428:1;36411:6;;:19;;;;;;;;;;;;;;;;;;36290:148::o:0;38819:487::-;37838:7;;;;;;;;;;;37830:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;38908:1:::1;38900:6;:9;:31;;;;;38923:8;;38913:6;:18;;38900:31;38892:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38996:10;;38986:6;38972:11;;:20;;;;:::i;:::-;:34;;38964:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39060:5;;39051:6;:14;;;;:::i;:::-;39038:9;:27;39030:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;39100:7;:5;:7::i;:::-;39092:25;;:36;39118:9;39092:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39155:12;:10;:12::i;:::-;39144:47;;;39181:1;39169:11;;:13;;;;:::i;:::-;39184:6;39144:47;;;;;;;:::i;:::-;;;;;;;;39206:9;39202:97;39222:6;39219:1;:9;39202:97;;;39249:38;39255:12;:10;:12::i;:::-;39273:11;;:13;;;;;;;;;:::i;:::-;;;;;39269:1;:17;;;;:::i;:::-;39249:5;:38::i;:::-;39230:3;;;;;:::i;:::-;;;;39202:97;;;;38819:487:::0;:::o;39822:627::-;37648:14;;;;;;;;;;;37640:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37742:4;37717:29;;:9;:21;37727:10;37717:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;37709:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39952:1:::1;39942:6;39909:18;:30;39928:10;39909:30;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:44;;39901:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40029:10;;40019:6;40005:11;;:20;;;;:::i;:::-;:34;;39997:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40133:5;;40124:6;:14;;;;:::i;:::-;40111:9;:27;40103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40190:7;:5;:7::i;:::-;40182:25;;:36;40208:9;40182:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40265:6;40229:18;:32;40248:12;:10;:12::i;:::-;40229:32;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;40298:12;:10;:12::i;:::-;40287:47;;;40324:1;40312:11;;:13;;;;:::i;:::-;40327:6;40287:47;;;;;;;:::i;:::-;;;;;;;;40349:9;40345:97;40365:6;40362:1;:9;40345:97;;;40392:38;40398:12;:10;:12::i;:::-;40416:11;;:13;;;;;;;;;:::i;:::-;;;;;40412:1;:17;;;;:::i;:::-;40392:5;:38::i;:::-;40373:3;;;;;:::i;:::-;;;;40345:97;;;;39822:627:::0;:::o;37284:26::-;;;;;;;;;;;;;:::o;35637:87::-;35683:7;35710:6;;;;;;;;;;;35703:13;;35637:87;:::o;38462:89::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38537:6:::1;38527:7;;:16;;;;;;;;;;;;;;;;;;38462:89:::0;:::o;21883:104::-;21939:13;21972:7;21965:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21883:104;:::o;41286:133::-;41359:4;41407;41387:24;;:9;:16;41397:5;41387:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;41380:31;;41286:133;;;:::o;38674:136::-;38750:7;38777:18;:25;38796:5;38777:25;;;;;;;;;;;;;;;;38770:32;;38674:136;;;:::o;37171:40::-;;;;:::o;23476:296::-;23591:12;:10;:12::i;:::-;23579:24;;:8;:24;;;;23571:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23692:8;23647:18;:32;23666:12;:10;:12::i;:::-;23647:32;;;;;;;;;;;;;;;:42;23680:8;23647:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23745:8;23716:48;;23731:12;:10;:12::i;:::-;23716:48;;;23755:8;23716:48;;;;;;:::i;:::-;;;;;;;;23476:296;;:::o;38218:93::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38294:9:::1;38286:5;:17;;;;38218:93:::0;:::o;24677:285::-;24809:41;24828:12;:10;:12::i;:::-;24842:7;24809:18;:41::i;:::-;24801:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24915:39;24929:4;24935:2;24939:7;24948:5;24915:13;:39::i;:::-;24677:285;;;;:::o;40963:273::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41076:9:::1;41072:157;41095:5;:12;41091:1;:16;41072:157;;;41150:4;41128:9;:19;41138:5;41144:1;41138:8;;;;;;;;;;;;;;;;;;;;;;41128:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;41200:14;41215:1;41200:17;;;;;;;;;;;;;;;;;;;;;;41169:18;:28;41188:5;41194:1;41188:8;;;;;;;;;;;;;;;;;;;;;;41169:28;;;;;;;;;;;;;;;:48;;;;41109:3;;;;;:::i;:::-;;;;41072:157;;;;40963:273:::0;;:::o;39319:485::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39406:1:::1;39398:6;:9;:31;;;;;39421:8;;39411:6;:18;;39398:31;39390:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39494:10;;39484:6;39470:11;;:20;;;;:::i;:::-;:34;;39462:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39558:5;;39549:6;:14;;;;:::i;:::-;39536:9;:27;39528:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;39598:7;:5;:7::i;:::-;39590:25;;:36;39616:9;39590:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39653:12;:10;:12::i;:::-;39642:47;;;39679:1;39667:11;;:13;;;;:::i;:::-;39682:6;39642:47;;;;;;;:::i;:::-;;;;;;;;39704:9;39700:97;39720:6;39717:1;:9;39700:97;;;39747:38;39753:12;:10;:12::i;:::-;39771:11;;:13;;;;;;;;;:::i;:::-;;;;;39767:1;:17;;;;:::i;:::-;39747:5;:38::i;:::-;39728:3;;;;;:::i;:::-;;;;39700:97;;;;39319:485:::0;:::o;33047:682::-;33120:13;33154:16;33162:7;33154;:16::i;:::-;33146:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;33238:23;33264:10;:19;33275:7;33264:19;;;;;;;;;;;33238:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33294:18;33315:10;:8;:10::i;:::-;33294:31;;33424:1;33408:4;33402:18;:23;33398:72;;;33449:9;33442:16;;;;;;33398:72;33600:1;33580:9;33574:23;:27;33570:108;;;33649:4;33655:9;33632:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33618:48;;;;;;33570:108;33698:23;33713:7;33698:14;:23::i;:::-;33691:30;;;;33047:682;;;;:::o;23844:164::-;23941:4;23965:18;:25;23984:5;23965:25;;;;;;;;;;;;;;;:35;23991:8;23965:35;;;;;;;;;;;;;;;;;;;;;;;;;23958:42;;23844:164;;;;:::o;36594:244::-;35869:12;:10;:12::i;:::-;35858:23;;:7;:5;:7::i;:::-;:23;;;35850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36703:1:::1;36683:22;;:8;:22;;;;36675:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36793:8;36764:38;;36785:6;;;;;;;;;;;36764:38;;;;;;;;;;;;36822:8;36813:6;;:17;;;;;;;;;;;;;;;;;;36594:244:::0;:::o;19271:157::-;19356:4;19395:25;19380:40;;;:11;:40;;;;19373:47;;19271:157;;;:::o;26431:127::-;26496:4;26548:1;26520:30;;:7;:16;26528:7;26520:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26513:37;;26431:127;;;:::o;16071:98::-;16124:7;16151:10;16144:17;;16071:98;:::o;30326:174::-;30428:2;30401:15;:24;30417:7;30401:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30484:7;30480:2;30446:46;;30455:23;30470:7;30455:14;:23::i;:::-;30446:46;;;;;;;;;;;;30326:174;;:::o;33886:217::-;33986:16;33994:7;33986;:16::i;:::-;33978:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34086:9;34064:10;:19;34075:7;34064:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;33886:217;;:::o;26726:348::-;26819:4;26844:16;26852:7;26844;:16::i;:::-;26836:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26920:13;26936:23;26951:7;26936:14;:23::i;:::-;26920:39;;26989:5;26978:16;;:7;:16;;;:51;;;;27022:7;26998:31;;:20;27010:7;26998:11;:20::i;:::-;:31;;;26978:51;:87;;;;27033:32;27050:5;27057:7;27033:16;:32::i;:::-;26978:87;26970:96;;;26726:348;;;;:::o;29659:548::-;29784:4;29757:31;;:23;29772:7;29757:14;:23::i;:::-;:31;;;29749:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29867:1;29853:16;;:2;:16;;;;29845:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29924:39;29945:4;29951:2;29955:7;29924:20;:39::i;:::-;30029:29;30046:1;30050:7;30029:8;:29::i;:::-;30091:1;30072:9;:15;30082:4;30072:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30120:1;30103:9;:13;30113:2;30103:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30151:2;30132:7;:16;30140:7;30132:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30191:7;30187:2;30172:27;;30181:4;30172:27;;;;;;;;;;;;29659:548;;;:::o;28342:385::-;28436:1;28422:16;;:2;:16;;;;28414:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28495:16;28503:7;28495;:16::i;:::-;28494:17;28486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28558:45;28587:1;28591:2;28595:7;28558:20;:45::i;:::-;28634:1;28617:9;:13;28627:2;28617:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28665:2;28646:7;:16;28654:7;28646:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28711:7;28707:2;28686:33;;28703:1;28686:33;;;;;;;;;;;;28342:385;;:::o;25845:272::-;25959:28;25969:4;25975:2;25979:7;25959:9;:28::i;:::-;26006:48;26029:4;26035:2;26039:7;26048:5;26006:22;:48::i;:::-;25998:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25845:272;;;;:::o;37997:107::-;38057:13;38089:7;38082:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37997:107;:::o;22059:361::-;22132:13;22166:16;22174:7;22166;:16::i;:::-;22158:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22248:21;22272:10;:8;:10::i;:::-;22248:34;;22324:1;22306:7;22300:21;:25;:112;;;;;;;;;;;;;;;;;22365:7;22374:18;:7;:16;:18::i;:::-;22348:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22300:112;22293:119;;;22059:361;;;:::o;32523:93::-;;;;:::o;31066:843::-;31187:4;31213:15;:2;:13;;;:15::i;:::-;31209:693;;;31265:2;31249:36;;;31286:12;:10;:12::i;:::-;31300:4;31306:7;31315:5;31249:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31245:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31512:1;31495:6;:13;:18;31491:341;;;31538:60;;;;;;;;;;:::i;:::-;;;;;;;;31491:341;31782:6;31776:13;31767:6;31763:2;31759:15;31752:38;31245:602;31382:45;;;31372:55;;;:6;:55;;;;31365:62;;;;;31209:693;31886:4;31879:11;;31066:843;;;;;;;:::o;16721:724::-;16777:13;17008:1;16999:5;:10;16995:53;;;17026:10;;;;;;;;;;;;;;;;;;;;;16995:53;17058:12;17073:5;17058:20;;17089:14;17114:78;17129:1;17121:4;:9;17114:78;;17147:8;;;;;:::i;:::-;;;;17178:2;17170:10;;;;;:::i;:::-;;;17114:78;;;17202:19;17234:6;17224:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17202:39;;17252:154;17268:1;17259:5;:10;17252:154;;17296:1;17286:11;;;;;:::i;:::-;;;17363:2;17355:5;:10;;;;:::i;:::-;17342:2;:24;;;;:::i;:::-;17329:39;;17312:6;17319;17312:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17392:2;17383:11;;;;;:::i;:::-;;;17252:154;;;17430:6;17416:21;;;;;16721:724;;;;:::o;8179:423::-;8239:4;8448:12;8559:7;8547:20;8539:28;;8593:1;8586:4;:8;8579:15;;;8179:423;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2225:303::-;2296:5;2345:3;2338:4;2330:6;2326:17;2322:27;2312:2;;2363:1;2360;2353:12;2312:2;2403:6;2390:20;2428:94;2518:3;2510:6;2503:4;2495:6;2491:17;2428:94;:::i;:::-;2419:103;;2302:226;;;;;:::o;2551:303::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:2;;2689:1;2686;2679:12;2638:2;2729:6;2716:20;2754:94;2844:3;2836:6;2829:4;2821:6;2817:17;2754:94;:::i;:::-;2745:103;;2628:226;;;;;:::o;2860:133::-;2903:5;2941:6;2928:20;2919:29;;2957:30;2981:5;2957:30;:::i;:::-;2909:84;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;3050:86;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3204:79;;;;:::o;3302:271::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:2;;3424:1;3421;3414:12;3373:2;3464:6;3451:20;3489:78;3563:3;3555:6;3548:4;3540:6;3536:17;3489:78;:::i;:::-;3480:87;;3363:210;;;;;:::o;3593:273::-;3649:5;3698:3;3691:4;3683:6;3679:17;3675:27;3665:2;;3716:1;3713;3706:12;3665:2;3756:6;3743:20;3781:79;3856:3;3848:6;3841:4;3833:6;3829:17;3781:79;:::i;:::-;3772:88;;3655:211;;;;;:::o;3872:139::-;3918:5;3956:6;3943:20;3934:29;;3972:33;3999:5;3972:33;:::i;:::-;3924:87;;;;:::o;4017:262::-;4076:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;4141:1;4138;4131:12;4093:2;4184:1;4209:53;4254:7;4245:6;4234:9;4230:22;4209:53;:::i;:::-;4199:63;;4155:117;4083:196;;;;:::o;4285:407::-;4353:6;4361;4410:2;4398:9;4389:7;4385:23;4381:32;4378:2;;;4426:1;4423;4416:12;4378:2;4469:1;4494:53;4539:7;4530:6;4519:9;4515:22;4494:53;:::i;:::-;4484:63;;4440:117;4596:2;4622:53;4667:7;4658:6;4647:9;4643:22;4622:53;:::i;:::-;4612:63;;4567:118;4368:324;;;;;:::o;4698:552::-;4775:6;4783;4791;4840:2;4828:9;4819:7;4815:23;4811:32;4808:2;;;4856:1;4853;4846:12;4808:2;4899:1;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4870:117;5026:2;5052:53;5097:7;5088:6;5077:9;5073:22;5052:53;:::i;:::-;5042:63;;4997:118;5154:2;5180:53;5225:7;5216:6;5205:9;5201:22;5180:53;:::i;:::-;5170:63;;5125:118;4798:452;;;;;:::o;5256:809::-;5351:6;5359;5367;5375;5424:3;5412:9;5403:7;5399:23;5395:33;5392:2;;;5441:1;5438;5431:12;5392:2;5484:1;5509:53;5554:7;5545:6;5534:9;5530:22;5509:53;:::i;:::-;5499:63;;5455:117;5611:2;5637:53;5682:7;5673:6;5662:9;5658:22;5637:53;:::i;:::-;5627:63;;5582:118;5739:2;5765:53;5810:7;5801:6;5790:9;5786:22;5765:53;:::i;:::-;5755:63;;5710:118;5895:2;5884:9;5880:18;5867:32;5926:18;5918:6;5915:30;5912:2;;;5958:1;5955;5948:12;5912:2;5986:62;6040:7;6031:6;6020:9;6016:22;5986:62;:::i;:::-;5976:72;;5838:220;5382:683;;;;;;;:::o;6071:401::-;6136:6;6144;6193:2;6181:9;6172:7;6168:23;6164:32;6161:2;;;6209:1;6206;6199:12;6161:2;6252:1;6277:53;6322:7;6313:6;6302:9;6298:22;6277:53;:::i;:::-;6267:63;;6223:117;6379:2;6405:50;6447:7;6438:6;6427:9;6423:22;6405:50;:::i;:::-;6395:60;;6350:115;6151:321;;;;;:::o;6478:407::-;6546:6;6554;6603:2;6591:9;6582:7;6578:23;6574:32;6571:2;;;6619:1;6616;6609:12;6571:2;6662:1;6687:53;6732:7;6723:6;6712:9;6708:22;6687:53;:::i;:::-;6677:63;;6633:117;6789:2;6815:53;6860:7;6851:6;6840:9;6836:22;6815:53;:::i;:::-;6805:63;;6760:118;6561:324;;;;;:::o;6891:693::-;7009:6;7017;7066:2;7054:9;7045:7;7041:23;7037:32;7034:2;;;7082:1;7079;7072:12;7034:2;7153:1;7142:9;7138:17;7125:31;7183:18;7175:6;7172:30;7169:2;;;7215:1;7212;7205:12;7169:2;7243:78;7313:7;7304:6;7293:9;7289:22;7243:78;:::i;:::-;7233:88;;7096:235;7398:2;7387:9;7383:18;7370:32;7429:18;7421:6;7418:30;7415:2;;;7461:1;7458;7451:12;7415:2;7489:78;7559:7;7550:6;7539:9;7535:22;7489:78;:::i;:::-;7479:88;;7341:236;7024:560;;;;;:::o;7590:256::-;7646:6;7695:2;7683:9;7674:7;7670:23;7666:32;7663:2;;;7711:1;7708;7701:12;7663:2;7754:1;7779:50;7821:7;7812:6;7801:9;7797:22;7779:50;:::i;:::-;7769:60;;7725:114;7653:193;;;;:::o;7852:260::-;7910:6;7959:2;7947:9;7938:7;7934:23;7930:32;7927:2;;;7975:1;7972;7965:12;7927:2;8018:1;8043:52;8087:7;8078:6;8067:9;8063:22;8043:52;:::i;:::-;8033:62;;7989:116;7917:195;;;;:::o;8118:282::-;8187:6;8236:2;8224:9;8215:7;8211:23;8207:32;8204:2;;;8252:1;8249;8242:12;8204:2;8295:1;8320:63;8375:7;8366:6;8355:9;8351:22;8320:63;:::i;:::-;8310:73;;8266:127;8194:206;;;;:::o;8406:375::-;8475:6;8524:2;8512:9;8503:7;8499:23;8495:32;8492:2;;;8540:1;8537;8530:12;8492:2;8611:1;8600:9;8596:17;8583:31;8641:18;8633:6;8630:30;8627:2;;;8673:1;8670;8663:12;8627:2;8701:63;8756:7;8747:6;8736:9;8732:22;8701:63;:::i;:::-;8691:73;;8554:220;8482:299;;;;:::o;8787:262::-;8846:6;8895:2;8883:9;8874:7;8870:23;8866:32;8863:2;;;8911:1;8908;8901:12;8863:2;8954:1;8979:53;9024:7;9015:6;9004:9;9000:22;8979:53;:::i;:::-;8969:63;;8925:117;8853:196;;;;:::o;9055:520::-;9133:6;9141;9190:2;9178:9;9169:7;9165:23;9161:32;9158:2;;;9206:1;9203;9196:12;9158:2;9249:1;9274:53;9319:7;9310:6;9299:9;9295:22;9274:53;:::i;:::-;9264:63;;9220:117;9404:2;9393:9;9389:18;9376:32;9435:18;9427:6;9424:30;9421:2;;;9467:1;9464;9457:12;9421:2;9495:63;9550:7;9541:6;9530:9;9526:22;9495:63;:::i;:::-;9485:73;;9347:221;9148:427;;;;;:::o;9581:118::-;9668:24;9686:5;9668:24;:::i;:::-;9663:3;9656:37;9646:53;;:::o;9705:109::-;9786:21;9801:5;9786:21;:::i;:::-;9781:3;9774:34;9764:50;;:::o;9820:360::-;9906:3;9934:38;9966:5;9934:38;:::i;:::-;9988:70;10051:6;10046:3;9988:70;:::i;:::-;9981:77;;10067:52;10112:6;10107:3;10100:4;10093:5;10089:16;10067:52;:::i;:::-;10144:29;10166:6;10144:29;:::i;:::-;10139:3;10135:39;10128:46;;9910:270;;;;;:::o;10186:147::-;10281:45;10320:5;10281:45;:::i;:::-;10276:3;10269:58;10259:74;;:::o;10339:364::-;10427:3;10455:39;10488:5;10455:39;:::i;:::-;10510:71;10574:6;10569:3;10510:71;:::i;:::-;10503:78;;10590:52;10635:6;10630:3;10623:4;10616:5;10612:16;10590:52;:::i;:::-;10667:29;10689:6;10667:29;:::i;:::-;10662:3;10658:39;10651:46;;10431:272;;;;;:::o;10709:377::-;10815:3;10843:39;10876:5;10843:39;:::i;:::-;10898:89;10980:6;10975:3;10898:89;:::i;:::-;10891:96;;10996:52;11041:6;11036:3;11029:4;11022:5;11018:16;10996:52;:::i;:::-;11073:6;11068:3;11064:16;11057:23;;10819:267;;;;;:::o;11092:365::-;11234:3;11255:66;11319:1;11314:3;11255:66;:::i;:::-;11248:73;;11330:93;11419:3;11330:93;:::i;:::-;11448:2;11443:3;11439:12;11432:19;;11238:219;;;:::o;11463:366::-;11605:3;11626:67;11690:2;11685:3;11626:67;:::i;:::-;11619:74;;11702:93;11791:3;11702:93;:::i;:::-;11820:2;11815:3;11811:12;11804:19;;11609:220;;;:::o;11835:366::-;11977:3;11998:67;12062:2;12057:3;11998:67;:::i;:::-;11991:74;;12074:93;12163:3;12074:93;:::i;:::-;12192:2;12187:3;12183:12;12176:19;;11981:220;;;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12353:220;;;:::o;12579:366::-;12721:3;12742:67;12806:2;12801:3;12742:67;:::i;:::-;12735:74;;12818:93;12907:3;12818:93;:::i;:::-;12936:2;12931:3;12927:12;12920:19;;12725:220;;;:::o;12951:366::-;13093:3;13114:67;13178:2;13173:3;13114:67;:::i;:::-;13107:74;;13190:93;13279:3;13190:93;:::i;:::-;13308:2;13303:3;13299:12;13292:19;;13097:220;;;:::o;13323:366::-;13465:3;13486:67;13550:2;13545:3;13486:67;:::i;:::-;13479:74;;13562:93;13651:3;13562:93;:::i;:::-;13680:2;13675:3;13671:12;13664:19;;13469:220;;;:::o;13695:366::-;13837:3;13858:67;13922:2;13917:3;13858:67;:::i;:::-;13851:74;;13934:93;14023:3;13934:93;:::i;:::-;14052:2;14047:3;14043:12;14036:19;;13841:220;;;:::o;14067:366::-;14209:3;14230:67;14294:2;14289:3;14230:67;:::i;:::-;14223:74;;14306:93;14395:3;14306:93;:::i;:::-;14424:2;14419:3;14415:12;14408:19;;14213:220;;;:::o;14439:366::-;14581:3;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14678:93;14767:3;14678:93;:::i;:::-;14796:2;14791:3;14787:12;14780:19;;14585:220;;;:::o;14811:366::-;14953:3;14974:67;15038:2;15033:3;14974:67;:::i;:::-;14967:74;;15050:93;15139:3;15050:93;:::i;:::-;15168:2;15163:3;15159:12;15152:19;;14957:220;;;:::o;15183:366::-;15325:3;15346:67;15410:2;15405:3;15346:67;:::i;:::-;15339:74;;15422:93;15511:3;15422:93;:::i;:::-;15540:2;15535:3;15531:12;15524:19;;15329:220;;;:::o;15555:366::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15701:220;;;:::o;15927:366::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;16073:220;;;:::o;16299:366::-;16441:3;16462:67;16526:2;16521:3;16462:67;:::i;:::-;16455:74;;16538:93;16627:3;16538:93;:::i;:::-;16656:2;16651:3;16647:12;16640:19;;16445:220;;;:::o;16671:366::-;16813:3;16834:67;16898:2;16893:3;16834:67;:::i;:::-;16827:74;;16910:93;16999:3;16910:93;:::i;:::-;17028:2;17023:3;17019:12;17012:19;;16817:220;;;:::o;17043:366::-;17185:3;17206:67;17270:2;17265:3;17206:67;:::i;:::-;17199:74;;17282:93;17371:3;17282:93;:::i;:::-;17400:2;17395:3;17391:12;17384:19;;17189:220;;;:::o;17415:366::-;17557:3;17578:67;17642:2;17637:3;17578:67;:::i;:::-;17571:74;;17654:93;17743:3;17654:93;:::i;:::-;17772:2;17767:3;17763:12;17756:19;;17561:220;;;:::o;17787:366::-;17929:3;17950:67;18014:2;18009:3;17950:67;:::i;:::-;17943:74;;18026:93;18115:3;18026:93;:::i;:::-;18144:2;18139:3;18135:12;18128:19;;17933:220;;;:::o;18159:366::-;18301:3;18322:67;18386:2;18381:3;18322:67;:::i;:::-;18315:74;;18398:93;18487:3;18398:93;:::i;:::-;18516:2;18511:3;18507:12;18500:19;;18305:220;;;:::o;18531:366::-;18673:3;18694:67;18758:2;18753:3;18694:67;:::i;:::-;18687:74;;18770:93;18859:3;18770:93;:::i;:::-;18888:2;18883:3;18879:12;18872:19;;18677:220;;;:::o;18903:366::-;19045:3;19066:67;19130:2;19125:3;19066:67;:::i;:::-;19059:74;;19142:93;19231:3;19142:93;:::i;:::-;19260:2;19255:3;19251:12;19244:19;;19049:220;;;:::o;19275:366::-;19417:3;19438:67;19502:2;19497:3;19438:67;:::i;:::-;19431:74;;19514:93;19603:3;19514:93;:::i;:::-;19632:2;19627:3;19623:12;19616:19;;19421:220;;;:::o;19647:366::-;19789:3;19810:67;19874:2;19869:3;19810:67;:::i;:::-;19803:74;;19886:93;19975:3;19886:93;:::i;:::-;20004:2;19999:3;19995:12;19988:19;;19793:220;;;:::o;20019:366::-;20161:3;20182:67;20246:2;20241:3;20182:67;:::i;:::-;20175:74;;20258:93;20347:3;20258:93;:::i;:::-;20376:2;20371:3;20367:12;20360:19;;20165:220;;;:::o;20391:366::-;20533:3;20554:67;20618:2;20613:3;20554:67;:::i;:::-;20547:74;;20630:93;20719:3;20630:93;:::i;:::-;20748:2;20743:3;20739:12;20732:19;;20537:220;;;:::o;20763:366::-;20905:3;20926:67;20990:2;20985:3;20926:67;:::i;:::-;20919:74;;21002:93;21091:3;21002:93;:::i;:::-;21120:2;21115:3;21111:12;21104:19;;20909:220;;;:::o;21135:118::-;21222:24;21240:5;21222:24;:::i;:::-;21217:3;21210:37;21200:53;;:::o;21259:435::-;21439:3;21461:95;21552:3;21543:6;21461:95;:::i;:::-;21454:102;;21573:95;21664:3;21655:6;21573:95;:::i;:::-;21566:102;;21685:3;21678:10;;21443:251;;;;;:::o;21700:222::-;21793:4;21831:2;21820:9;21816:18;21808:26;;21844:71;21912:1;21901:9;21897:17;21888:6;21844:71;:::i;:::-;21798:124;;;;:::o;21928:640::-;22123:4;22161:3;22150:9;22146:19;22138:27;;22175:71;22243:1;22232:9;22228:17;22219:6;22175:71;:::i;:::-;22256:72;22324:2;22313:9;22309:18;22300:6;22256:72;:::i;:::-;22338;22406:2;22395:9;22391:18;22382:6;22338:72;:::i;:::-;22457:9;22451:4;22447:20;22442:2;22431:9;22427:18;22420:48;22485:76;22556:4;22547:6;22485:76;:::i;:::-;22477:84;;22128:440;;;;;;;:::o;22574:210::-;22661:4;22699:2;22688:9;22684:18;22676:26;;22712:65;22774:1;22763:9;22759:17;22750:6;22712:65;:::i;:::-;22666:118;;;;:::o;22790:313::-;22903:4;22941:2;22930:9;22926:18;22918:26;;22990:9;22984:4;22980:20;22976:1;22965:9;22961:17;22954:47;23018:78;23091:4;23082:6;23018:78;:::i;:::-;23010:86;;22908:195;;;;:::o;23109:419::-;23275:4;23313:2;23302:9;23298:18;23290:26;;23362:9;23356:4;23352:20;23348:1;23337:9;23333:17;23326:47;23390:131;23516:4;23390:131;:::i;:::-;23382:139;;23280:248;;;:::o;23534:419::-;23700:4;23738:2;23727:9;23723:18;23715:26;;23787:9;23781:4;23777:20;23773:1;23762:9;23758:17;23751:47;23815:131;23941:4;23815:131;:::i;:::-;23807:139;;23705:248;;;:::o;23959:419::-;24125:4;24163:2;24152:9;24148:18;24140:26;;24212:9;24206:4;24202:20;24198:1;24187:9;24183:17;24176:47;24240:131;24366:4;24240:131;:::i;:::-;24232:139;;24130:248;;;:::o;24384:419::-;24550:4;24588:2;24577:9;24573:18;24565:26;;24637:9;24631:4;24627:20;24623:1;24612:9;24608:17;24601:47;24665:131;24791:4;24665:131;:::i;:::-;24657:139;;24555:248;;;:::o;24809:419::-;24975:4;25013:2;25002:9;24998:18;24990:26;;25062:9;25056:4;25052:20;25048:1;25037:9;25033:17;25026:47;25090:131;25216:4;25090:131;:::i;:::-;25082:139;;24980:248;;;:::o;25234:419::-;25400:4;25438:2;25427:9;25423:18;25415:26;;25487:9;25481:4;25477:20;25473:1;25462:9;25458:17;25451:47;25515:131;25641:4;25515:131;:::i;:::-;25507:139;;25405:248;;;:::o;25659:419::-;25825:4;25863:2;25852:9;25848:18;25840:26;;25912:9;25906:4;25902:20;25898:1;25887:9;25883:17;25876:47;25940:131;26066:4;25940:131;:::i;:::-;25932:139;;25830:248;;;:::o;26084:419::-;26250:4;26288:2;26277:9;26273:18;26265:26;;26337:9;26331:4;26327:20;26323:1;26312:9;26308:17;26301:47;26365:131;26491:4;26365:131;:::i;:::-;26357:139;;26255:248;;;:::o;26509:419::-;26675:4;26713:2;26702:9;26698:18;26690:26;;26762:9;26756:4;26752:20;26748:1;26737:9;26733:17;26726:47;26790:131;26916:4;26790:131;:::i;:::-;26782:139;;26680:248;;;:::o;26934:419::-;27100:4;27138:2;27127:9;27123:18;27115:26;;27187:9;27181:4;27177:20;27173:1;27162:9;27158:17;27151:47;27215:131;27341:4;27215:131;:::i;:::-;27207:139;;27105:248;;;:::o;27359:419::-;27525:4;27563:2;27552:9;27548:18;27540:26;;27612:9;27606:4;27602:20;27598:1;27587:9;27583:17;27576:47;27640:131;27766:4;27640:131;:::i;:::-;27632:139;;27530:248;;;:::o;27784:419::-;27950:4;27988:2;27977:9;27973:18;27965:26;;28037:9;28031:4;28027:20;28023:1;28012:9;28008:17;28001:47;28065:131;28191:4;28065:131;:::i;:::-;28057:139;;27955:248;;;:::o;28209:419::-;28375:4;28413:2;28402:9;28398:18;28390:26;;28462:9;28456:4;28452:20;28448:1;28437:9;28433:17;28426:47;28490:131;28616:4;28490:131;:::i;:::-;28482:139;;28380:248;;;:::o;28634:419::-;28800:4;28838:2;28827:9;28823:18;28815:26;;28887:9;28881:4;28877:20;28873:1;28862:9;28858:17;28851:47;28915:131;29041:4;28915:131;:::i;:::-;28907:139;;28805:248;;;:::o;29059:419::-;29225:4;29263:2;29252:9;29248:18;29240:26;;29312:9;29306:4;29302:20;29298:1;29287:9;29283:17;29276:47;29340:131;29466:4;29340:131;:::i;:::-;29332:139;;29230:248;;;:::o;29484:419::-;29650:4;29688:2;29677:9;29673:18;29665:26;;29737:9;29731:4;29727:20;29723:1;29712:9;29708:17;29701:47;29765:131;29891:4;29765:131;:::i;:::-;29757:139;;29655:248;;;:::o;29909:419::-;30075:4;30113:2;30102:9;30098:18;30090:26;;30162:9;30156:4;30152:20;30148:1;30137:9;30133:17;30126:47;30190:131;30316:4;30190:131;:::i;:::-;30182:139;;30080:248;;;:::o;30334:419::-;30500:4;30538:2;30527:9;30523:18;30515:26;;30587:9;30581:4;30577:20;30573:1;30562:9;30558:17;30551:47;30615:131;30741:4;30615:131;:::i;:::-;30607:139;;30505:248;;;:::o;30759:419::-;30925:4;30963:2;30952:9;30948:18;30940:26;;31012:9;31006:4;31002:20;30998:1;30987:9;30983:17;30976:47;31040:131;31166:4;31040:131;:::i;:::-;31032:139;;30930:248;;;:::o;31184:419::-;31350:4;31388:2;31377:9;31373:18;31365:26;;31437:9;31431:4;31427:20;31423:1;31412:9;31408:17;31401:47;31465:131;31591:4;31465:131;:::i;:::-;31457:139;;31355:248;;;:::o;31609:419::-;31775:4;31813:2;31802:9;31798:18;31790:26;;31862:9;31856:4;31852:20;31848:1;31837:9;31833:17;31826:47;31890:131;32016:4;31890:131;:::i;:::-;31882:139;;31780:248;;;:::o;32034:419::-;32200:4;32238:2;32227:9;32223:18;32215:26;;32287:9;32281:4;32277:20;32273:1;32262:9;32258:17;32251:47;32315:131;32441:4;32315:131;:::i;:::-;32307:139;;32205:248;;;:::o;32459:419::-;32625:4;32663:2;32652:9;32648:18;32640:26;;32712:9;32706:4;32702:20;32698:1;32687:9;32683:17;32676:47;32740:131;32866:4;32740:131;:::i;:::-;32732:139;;32630:248;;;:::o;32884:419::-;33050:4;33088:2;33077:9;33073:18;33065:26;;33137:9;33131:4;33127:20;33123:1;33112:9;33108:17;33101:47;33165:131;33291:4;33165:131;:::i;:::-;33157:139;;33055:248;;;:::o;33309:419::-;33475:4;33513:2;33502:9;33498:18;33490:26;;33562:9;33556:4;33552:20;33548:1;33537:9;33533:17;33526:47;33590:131;33716:4;33590:131;:::i;:::-;33582:139;;33480:248;;;:::o;33734:419::-;33900:4;33938:2;33927:9;33923:18;33915:26;;33987:9;33981:4;33977:20;33973:1;33962:9;33958:17;33951:47;34015:131;34141:4;34015:131;:::i;:::-;34007:139;;33905:248;;;:::o;34159:419::-;34325:4;34363:2;34352:9;34348:18;34340:26;;34412:9;34406:4;34402:20;34398:1;34387:9;34383:17;34376:47;34440:131;34566:4;34440:131;:::i;:::-;34432:139;;34330:248;;;:::o;34584:222::-;34677:4;34715:2;34704:9;34700:18;34692:26;;34728:71;34796:1;34785:9;34781:17;34772:6;34728:71;:::i;:::-;34682:124;;;;:::o;34812:348::-;34941:4;34979:2;34968:9;34964:18;34956:26;;34992:71;35060:1;35049:9;35045:17;35036:6;34992:71;:::i;:::-;35073:80;35149:2;35138:9;35134:18;35125:6;35073:80;:::i;:::-;34946:214;;;;;:::o;35166:332::-;35287:4;35325:2;35314:9;35310:18;35302:26;;35338:71;35406:1;35395:9;35391:17;35382:6;35338:71;:::i;:::-;35419:72;35487:2;35476:9;35472:18;35463:6;35419:72;:::i;:::-;35292:206;;;;;:::o;35504:129::-;35538:6;35565:20;;:::i;:::-;35555:30;;35594:33;35622:4;35614:6;35594:33;:::i;:::-;35545:88;;;:::o;35639:75::-;35672:6;35705:2;35699:9;35689:19;;35679:35;:::o;35720:311::-;35797:4;35887:18;35879:6;35876:30;35873:2;;;35909:18;;:::i;:::-;35873:2;35959:4;35951:6;35947:17;35939:25;;36019:4;36013;36009:15;36001:23;;35802:229;;;:::o;36037:311::-;36114:4;36204:18;36196:6;36193:30;36190:2;;;36226:18;;:::i;:::-;36190:2;36276:4;36268:6;36264:17;36256:25;;36336:4;36330;36326:15;36318:23;;36119:229;;;:::o;36354:307::-;36415:4;36505:18;36497:6;36494:30;36491:2;;;36527:18;;:::i;:::-;36491:2;36565:29;36587:6;36565:29;:::i;:::-;36557:37;;36649:4;36643;36639:15;36631:23;;36420:241;;;:::o;36667:308::-;36729:4;36819:18;36811:6;36808:30;36805:2;;;36841:18;;:::i;:::-;36805:2;36879:29;36901:6;36879:29;:::i;:::-;36871:37;;36963:4;36957;36953:15;36945:23;;36734:241;;;:::o;36981:98::-;37032:6;37066:5;37060:12;37050:22;;37039:40;;;:::o;37085:99::-;37137:6;37171:5;37165:12;37155:22;;37144:40;;;:::o;37190:168::-;37273:11;37307:6;37302:3;37295:19;37347:4;37342:3;37338:14;37323:29;;37285:73;;;;:::o;37364:169::-;37448:11;37482:6;37477:3;37470:19;37522:4;37517:3;37513:14;37498:29;;37460:73;;;;:::o;37539:148::-;37641:11;37678:3;37663:18;;37653:34;;;;:::o;37693:305::-;37733:3;37752:20;37770:1;37752:20;:::i;:::-;37747:25;;37786:20;37804:1;37786:20;:::i;:::-;37781:25;;37940:1;37872:66;37868:74;37865:1;37862:81;37859:2;;;37946:18;;:::i;:::-;37859:2;37990:1;37987;37983:9;37976:16;;37737:261;;;;:::o;38004:185::-;38044:1;38061:20;38079:1;38061:20;:::i;:::-;38056:25;;38095:20;38113:1;38095:20;:::i;:::-;38090:25;;38134:1;38124:2;;38139:18;;:::i;:::-;38124:2;38181:1;38178;38174:9;38169:14;;38046:143;;;;:::o;38195:348::-;38235:7;38258:20;38276:1;38258:20;:::i;:::-;38253:25;;38292:20;38310:1;38292:20;:::i;:::-;38287:25;;38480:1;38412:66;38408:74;38405:1;38402:81;38397:1;38390:9;38383:17;38379:105;38376:2;;;38487:18;;:::i;:::-;38376:2;38535:1;38532;38528:9;38517:20;;38243:300;;;;:::o;38549:191::-;38589:4;38609:20;38627:1;38609:20;:::i;:::-;38604:25;;38643:20;38661:1;38643:20;:::i;:::-;38638:25;;38682:1;38679;38676:8;38673:2;;;38687:18;;:::i;:::-;38673:2;38732:1;38729;38725:9;38717:17;;38594:146;;;;:::o;38746:96::-;38783:7;38812:24;38830:5;38812:24;:::i;:::-;38801:35;;38791:51;;;:::o;38848:90::-;38882:7;38925:5;38918:13;38911:21;38900:32;;38890:48;;;:::o;38944:149::-;38980:7;39020:66;39013:5;39009:78;38998:89;;38988:105;;;:::o;39099:126::-;39136:7;39176:42;39169:5;39165:54;39154:65;;39144:81;;;:::o;39231:77::-;39268:7;39297:5;39286:16;;39276:32;;;:::o;39314:121::-;39372:9;39405:24;39423:5;39405:24;:::i;:::-;39392:37;;39382:53;;;:::o;39441:154::-;39525:6;39520:3;39515;39502:30;39587:1;39578:6;39573:3;39569:16;39562:27;39492:103;;;:::o;39601:307::-;39669:1;39679:113;39693:6;39690:1;39687:13;39679:113;;;39778:1;39773:3;39769:11;39763:18;39759:1;39754:3;39750:11;39743:39;39715:2;39712:1;39708:10;39703:15;;39679:113;;;39810:6;39807:1;39804:13;39801:2;;;39890:1;39881:6;39876:3;39872:16;39865:27;39801:2;39650:258;;;;:::o;39914:320::-;39958:6;39995:1;39989:4;39985:12;39975:22;;40042:1;40036:4;40032:12;40063:18;40053:2;;40119:4;40111:6;40107:17;40097:27;;40053:2;40181;40173:6;40170:14;40150:18;40147:38;40144:2;;;40200:18;;:::i;:::-;40144:2;39965:269;;;;:::o;40240:281::-;40323:27;40345:4;40323:27;:::i;:::-;40315:6;40311:40;40453:6;40441:10;40438:22;40417:18;40405:10;40402:34;40399:62;40396:2;;;40464:18;;:::i;:::-;40396:2;40504:10;40500:2;40493:22;40283:238;;;:::o;40527:233::-;40566:3;40589:24;40607:5;40589:24;:::i;:::-;40580:33;;40635:66;40628:5;40625:77;40622:2;;;40705:18;;:::i;:::-;40622:2;40752:1;40745:5;40741:13;40734:20;;40570:190;;;:::o;40766:176::-;40798:1;40815:20;40833:1;40815:20;:::i;:::-;40810:25;;40849:20;40867:1;40849:20;:::i;:::-;40844:25;;40888:1;40878:2;;40893:18;;:::i;:::-;40878:2;40934:1;40931;40927:9;40922:14;;40800:142;;;;:::o;40948:180::-;40996:77;40993:1;40986:88;41093:4;41090:1;41083:15;41117:4;41114:1;41107:15;41134:180;41182:77;41179:1;41172:88;41279:4;41276:1;41269:15;41303:4;41300:1;41293:15;41320:180;41368:77;41365:1;41358:88;41465:4;41462:1;41455:15;41489:4;41486:1;41479:15;41506:180;41554:77;41551:1;41544:88;41651:4;41648:1;41641:15;41675:4;41672:1;41665:15;41692:102;41733:6;41784:2;41780:7;41775:2;41768:5;41764:14;41760:28;41750:38;;41740:54;;;:::o;41800:158::-;41940:10;41936:1;41928:6;41924:14;41917:34;41906:52;:::o;41964:237::-;42104:34;42100:1;42092:6;42088:14;42081:58;42173:20;42168:2;42160:6;42156:15;42149:45;42070:131;:::o;42207:225::-;42347:34;42343:1;42335:6;42331:14;42324:58;42416:8;42411:2;42403:6;42399:15;42392:33;42313:119;:::o;42438:178::-;42578:30;42574:1;42566:6;42562:14;42555:54;42544:72;:::o;42622:167::-;42762:19;42758:1;42750:6;42746:14;42739:43;42728:61;:::o;42795:223::-;42935:34;42931:1;42923:6;42919:14;42912:58;43004:6;42999:2;42991:6;42987:15;42980:31;42901:117;:::o;43024:175::-;43164:27;43160:1;43152:6;43148:14;43141:51;43130:69;:::o;43205:178::-;43345:30;43341:1;43333:6;43329:14;43322:54;43311:72;:::o;43389:231::-;43529:34;43525:1;43517:6;43513:14;43506:58;43598:14;43593:2;43585:6;43581:15;43574:39;43495:125;:::o;43626:243::-;43766:34;43762:1;43754:6;43750:14;43743:58;43835:26;43830:2;43822:6;43818:15;43811:51;43732:137;:::o;43875:229::-;44015:34;44011:1;44003:6;43999:14;43992:58;44084:12;44079:2;44071:6;44067:15;44060:37;43981:123;:::o;44110:228::-;44250:34;44246:1;44238:6;44234:14;44227:58;44319:11;44314:2;44306:6;44302:15;44295:36;44216:122;:::o;44344:233::-;44484:34;44480:1;44472:6;44468:14;44461:58;44553:16;44548:2;44540:6;44536:15;44529:41;44450:127;:::o;44583:178::-;44723:30;44719:1;44711:6;44707:14;44700:54;44689:72;:::o;44767:182::-;44907:34;44903:1;44895:6;44891:14;44884:58;44873:76;:::o;44955:236::-;45095:34;45091:1;45083:6;45079:14;45072:58;45164:19;45159:2;45151:6;45147:15;45140:44;45061:130;:::o;45197:231::-;45337:34;45333:1;45325:6;45321:14;45314:58;45406:14;45401:2;45393:6;45389:15;45382:39;45303:125;:::o;45434:182::-;45574:34;45570:1;45562:6;45558:14;45551:58;45540:76;:::o;45622:228::-;45762:34;45758:1;45750:6;45746:14;45739:58;45831:11;45826:2;45818:6;45814:15;45807:36;45728:122;:::o;45856:234::-;45996:34;45992:1;45984:6;45980:14;45973:58;46065:17;46060:2;46052:6;46048:15;46041:42;45962:128;:::o;46096:220::-;46236:34;46232:1;46224:6;46220:14;46213:58;46305:3;46300:2;46292:6;46288:15;46281:28;46202:114;:::o;46322:236::-;46462:34;46458:1;46450:6;46446:14;46439:58;46531:19;46526:2;46518:6;46514:15;46507:44;46428:130;:::o;46564:166::-;46704:18;46700:1;46692:6;46688:14;46681:42;46670:60;:::o;46736:235::-;46876:34;46872:1;46864:6;46860:14;46853:58;46945:18;46940:2;46932:6;46928:15;46921:43;46842:129;:::o;46977:161::-;47117:13;47113:1;47105:6;47101:14;47094:37;47083:55;:::o;47144:181::-;47284:33;47280:1;47272:6;47268:14;47261:57;47250:75;:::o;47331:161::-;47471:13;47467:1;47459:6;47455:14;47448:37;47437:55;:::o;47498:122::-;47571:24;47589:5;47571:24;:::i;:::-;47564:5;47561:35;47551:2;;47610:1;47607;47600:12;47551:2;47541:79;:::o;47626:116::-;47696:21;47711:5;47696:21;:::i;:::-;47689:5;47686:32;47676:2;;47732:1;47729;47722:12;47676:2;47666:76;:::o;47748:120::-;47820:23;47837:5;47820:23;:::i;:::-;47813:5;47810:34;47800:2;;47858:1;47855;47848:12;47800:2;47790:78;:::o;47874:122::-;47947:24;47965:5;47947:24;:::i;:::-;47940:5;47937:35;47927:2;;47986:1;47983;47976:12;47927:2;47917:79;:::o

Swarm Source

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