ERC-721
Overview
Max Total Supply
394 D3C
Holders
197
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 D3CLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SigMint
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-04 */ // SPDX-License-Identifier: MIXED // Sources flattened with hardhat v2.11.1 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/introspection/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File @openzeppelin/contracts/utils/introspection/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/utils/cryptography/[email protected] // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File contracts/SigMint.sol // License-Identifier: UNLICENSED pragma solidity ^0.8.4; contract SigMint is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; address private immutable signer; uint256 public immutable maxSupply = 2500; uint256 public maxMintAmountPerTx = 2; uint256 public cost = 0.2 ether; bool public paused = true; mapping(address => uint256) private mintTable; event Minted(); constructor(address _signer) ERC721("D3CONOMIST", "D3C") { signer = _signer; setUriPrefix("ipfs://QmeMfaUaZWvD1W1L7dfuY8eB7vrt5jnn5pxMqNvJkRgnQ2/"); } modifier mintCompliance(uint256 _mintAmount) { require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded (#1002)"); require(_mintAmount > 0 && mintTable[msg.sender] + _mintAmount <= maxMintAmountPerTx ,'Mint limit exceeded (#1003)'); _; } function getMintSlotForAddress(address _address) public view returns (uint256) { return mintTable[_address]; } function mint(bytes32 _hash, bytes memory _signature, uint256 _mintAmount ) public payable mintCompliance(_mintAmount) { require(!paused, "Mint is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); address _signer = signer; bool _pass = false; if (_hash == keccak256(abi.encode(msg.sender, mintTable[msg.sender], address(this)))) { if (_signer == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature)) { _pass = true; } } require(_pass, "Invalid hash/signature pair or signature timed out"); _mintLoop(msg.sender, _mintAmount); emit Minted(); } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function totalSupply() public view returns (uint256) { return supply.current(); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function teamMint(uint256 _amount) public onlyOwner { _mintLoop(owner(), _amount); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } mintTable[msg.sender] = mintTable[msg.sender] + _mintAmount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"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":[],"name":"Minted","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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getMintSlotForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260405180602001604052806000815250600890805190602001906200002b92919062000371565b506109c460a09081525060026009556702c68af0bb140000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006e57600080fd5b506040516200473438038062004734833981810160405281019062000094919062000438565b6040518060400160405280600a81526020017f4433434f4e4f4d495354000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f443343000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011892919062000371565b5080600190805190602001906200013192919062000371565b5050506200015462000148620001bc60201b60201c565b620001c460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620001b5604051806060016040528060368152602001620046fe603691396200028a60201b60201c565b506200059a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029a620002b660201b60201c565b8060089080519060200190620002b292919062000371565b5050565b620002c6620001bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ec6200034760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000345576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033c906200048b565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037f90620004f2565b90600052602060002090601f016020900481019282620003a35760008555620003ef565b82601f10620003be57805160ff1916838001178555620003ef565b82800160010185558215620003ef579182015b82811115620003ee578251825591602001919060010190620003d1565b5b509050620003fe919062000402565b5090565b5b808211156200041d57600081600090555060010162000403565b5090565b600081519050620004328162000580565b92915050565b6000602082840312156200044b57600080fd5b60006200045b8482850162000421565b91505092915050565b600062000473602083620004ad565b9150620004808262000557565b602082019050919050565b60006020820190508181036000830152620004a68162000464565b9050919050565b600082825260208201905092915050565b6000620004cb82620004d2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200050b57607f821691505b6020821081141562000522576200052162000528565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200058b81620004be565b81146200059757600080fd5b50565b60805160601c60a051614134620005ca60003960008181610bf501526112e401526000610da901526141346000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461063f578063d5abeb011461067c578063e985e9c5146106a7578063f2fde38b146106e4576101cd565b806395d89b4114610599578063a22cb465146105c4578063b071401b146105ed578063b88d4fde14610616576101cd565b80637ec4a659116100d15780637ec4a659146104dd5780638bbef906146105065780638da5cb5b1461054357806394354fd01461056e576101cd565b80636352211e1461044c57806370a0823114610489578063715018a6146104c6576101cd565b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a146103b15780635c975abb146103da57806362b99ad414610405578063631c1c5a14610430576101cd565b806323b872dd1461031f5780632fbba115146103485780633ccfd60b1461037157806342842e0e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313faede6146102a057806316c38b3c146102cb57806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c80565b61070d565b60405161020691906132d7565b60405180910390f35b34801561021b57600080fd5b506102246107ef565b6040516102319190613337565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d13565b610881565b60405161026e9190613239565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612bb4565b6108c7565b005b3480156102ac57600080fd5b506102b56109df565b6040516102c29190613639565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612bf0565b6109e5565b005b34801561030057600080fd5b50610309610a0a565b6040516103169190613639565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612aae565b610a1b565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d13565b610a7b565b005b34801561037d57600080fd5b50610386610a97565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612aae565b610b1f565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d13565b610b3f565b005b3480156103e657600080fd5b506103ef610b51565b6040516103fc91906132d7565b60405180910390f35b34801561041157600080fd5b5061041a610b64565b6040516104279190613337565b60405180910390f35b61044a60048036038101906104459190612c19565b610bf2565b005b34801561045857600080fd5b50610473600480360381019061046e9190612d13565b610f06565b6040516104809190613239565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612a49565b610fb8565b6040516104bd9190613639565b60405180910390f35b3480156104d257600080fd5b506104db611070565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190612cd2565b611084565b005b34801561051257600080fd5b5061052d60048036038101906105289190612a49565b6110a6565b60405161053a9190613639565b60405180910390f35b34801561054f57600080fd5b506105586110ef565b6040516105659190613239565b60405180910390f35b34801561057a57600080fd5b50610583611119565b6040516105909190613639565b60405180910390f35b3480156105a557600080fd5b506105ae61111f565b6040516105bb9190613337565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612b78565b6111b1565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612d13565b6111c7565b005b34801561062257600080fd5b5061063d60048036038101906106389190612afd565b6111d9565b005b34801561064b57600080fd5b5061066660048036038101906106619190612d13565b61123b565b6040516106739190613337565b60405180910390f35b34801561068857600080fd5b506106916112e2565b60405161069e9190613639565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612a72565b611306565b6040516106db91906132d7565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190612a49565b61139a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e857506107e78261141e565b5b9050919050565b6060600080546107fe9061390b565b80601f016020809104026020016040519081016040528092919081815260200182805461082a9061390b565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c82611488565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d282610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90613579565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109626114d3565b73ffffffffffffffffffffffffffffffffffffffff16148061099157506109908161098b6114d3565b611306565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906134d9565b60405180910390fd5b6109da83836114db565b505050565b600a5481565b6109ed611594565b80600b60006101000a81548160ff02191690831515021790555050565b6000610a166007611612565b905090565b610a2c610a266114d3565b82611620565b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906135f9565b60405180910390fd5b610a768383836116b5565b505050565b610a83611594565b610a94610a8e6110ef565b8261191c565b50565b610a9f611594565b6000610aa96110ef565b73ffffffffffffffffffffffffffffffffffffffff1647604051610acc90613224565b60006040518083038185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b1c57600080fd5b50565b610b3a838383604051806020016040528060008152506111d9565b505050565b610b47611594565b80600a8190555050565b600b60009054906101000a900460ff1681565b60088054610b719061390b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9d9061390b565b8015610bea5780601f10610bbf57610100808354040283529160200191610bea565b820191906000526020600020905b815481529060010190602001808311610bcd57829003601f168201915b505050505081565b807f000000000000000000000000000000000000000000000000000000000000000081610c1f6007611612565b610c299190613729565b1115610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c61906135b9565b60405180910390fd5b600081118015610cc6575060095481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc39190613729565b11155b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90613599565b60405180910390fd5b600b60009054906101000a900460ff1615610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906135d9565b60405180910390fd5b81600a54610d6391906137b0565b341015610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613619565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000009050600033600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205430604051602001610e20939291906132a0565b60405160208183030381529060405280519060200120861415610e8857610e4f610e49876119ea565b86611a1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8757600190505b5b80610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613479565b60405180910390fd5b610ed2338561191c565b7fe923f1ae2abf95fba64080dca4084b97e57ceddb8f45f6038172e39ac3b987be60405160405180910390a1505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613559565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613499565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611078611594565b6110826000611a41565b565b61108c611594565b80600890805190602001906110a2929190612858565b5050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606001805461112e9061390b565b80601f016020809104026020016040519081016040528092919081815260200182805461115a9061390b565b80156111a75780601f1061117c576101008083540402835291602001916111a7565b820191906000526020600020905b81548152906001019060200180831161118a57829003601f168201915b5050505050905090565b6111c36111bc6114d3565b8383611b07565b5050565b6111cf611594565b8060098190555050565b6111ea6111e46114d3565b83611620565b611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906135f9565b60405180910390fd5b61123584848484611c74565b50505050565b606061124682611cd0565b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613539565b60405180910390fd5b600061128f611d3c565b905060008151116112af57604051806020016040528060008152506112da565b806112b984611dce565b6040516020016112ca9291906131cf565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a2611594565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906133b9565b60405180910390fd5b61141b81611a41565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149181611cd0565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613559565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154e83610f06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61159c6114d3565b73ffffffffffffffffffffffffffffffffffffffff166115ba6110ef565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613519565b60405180910390fd5b565b600081600001549050919050565b60008061162c83610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166e575061166d8185611306565b5b806116ac57508373ffffffffffffffffffffffffffffffffffffffff1661169484610881565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116d582610f06565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906133d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613419565b60405180910390fd5b6117a6838383611f7b565b6117b16000826114db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611801919061380a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118589190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611917838383611f80565b505050565b60005b81811015611957576119316007611f85565b6119448361193f6007611612565b611f9b565b808061194f9061396e565b91505061191f565b5080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a39190613729565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000816040516020016119fd91906131fe565b604051602081830303815290604052805190602001209050919050565b6000806000611a298585611fb9565b91509150611a368161200b565b819250505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613439565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6791906132d7565b60405180910390a3505050565b611c7f8484846116b5565b611c8b8484848461235c565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613399565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611d4b9061390b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d779061390b565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b5050505050905090565b60606000821415611e16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f76565b600082905060005b60008214611e48578080611e319061396e565b915050600a82611e41919061377f565b9150611e1e565b60008167ffffffffffffffff811115611e8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ebc5781602001600182028036833780820191505090505b5090505b60008514611f6f57600182611ed5919061380a565b9150600a85611ee491906139c1565b6030611ef09190613729565b60f81b818381518110611f2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f68919061377f565b9450611ec0565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b611fb58282604051806020016040528060008152506124f3565b5050565b600080604183511415611ffb5760008060006020860151925060408601519150606086015160001a9050611fef8782858561254e565b94509450505050612004565b60006002915091505b9250929050565b60006004811115612045577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561207e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561208957612359565b600160048111156120c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156120fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613359565b60405180910390fd5b60026004811115612177577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613379565b60405180910390fd5b6003600481111561222b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612264577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613459565b60405180910390fd5b6004808111156122de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612317577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906134b9565b60405180910390fd5b5b50565b600061237d8473ffffffffffffffffffffffffffffffffffffffff1661265b565b156124e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a66114d3565b8786866040518563ffffffff1660e01b81526004016123c89493929190613254565b602060405180830381600087803b1580156123e257600080fd5b505af192505050801561241357506040513d601f19601f820116820180604052508101906124109190612ca9565b60015b612496573d8060008114612443576040519150601f19603f3d011682016040523d82523d6000602084013e612448565b606091505b5060008151141561248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590613399565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124eb565b600190505b949350505050565b6124fd838361267e565b61250a600084848461235c565b612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613399565b60405180910390fd5b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612589576000600391509150612652565b601b8560ff16141580156125a15750601c8560ff1614155b156125b3576000600491509150612652565b6000600187878787604051600081526020016040526040516125d894939291906132f2565b6020604051602081039080840390855afa1580156125fa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264957600060019250925050612652565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e5906134f9565b60405180910390fd5b6126f781611cd0565b15612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e906133f9565b60405180910390fd5b61274360008383611f7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127939190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285460008383611f80565b5050565b8280546128649061390b565b90600052602060002090601f01602090048101928261288657600085556128cd565b82601f1061289f57805160ff19168380011785556128cd565b828001600101855582156128cd579182015b828111156128cc5782518255916020019190600101906128b1565b5b5090506128da91906128de565b5090565b5b808211156128f75760008160009055506001016128df565b5090565b600061290e61290984613679565b613654565b90508281526020810184848401111561292657600080fd5b6129318482856138c9565b509392505050565b600061294c612947846136aa565b613654565b90508281526020810184848401111561296457600080fd5b61296f8482856138c9565b509392505050565b6000813590506129868161408b565b92915050565b60008135905061299b816140a2565b92915050565b6000813590506129b0816140b9565b92915050565b6000813590506129c5816140d0565b92915050565b6000815190506129da816140d0565b92915050565b600082601f8301126129f157600080fd5b8135612a018482602086016128fb565b91505092915050565b600082601f830112612a1b57600080fd5b8135612a2b848260208601612939565b91505092915050565b600081359050612a43816140e7565b92915050565b600060208284031215612a5b57600080fd5b6000612a6984828501612977565b91505092915050565b60008060408385031215612a8557600080fd5b6000612a9385828601612977565b9250506020612aa485828601612977565b9150509250929050565b600080600060608486031215612ac357600080fd5b6000612ad186828701612977565b9350506020612ae286828701612977565b9250506040612af386828701612a34565b9150509250925092565b60008060008060808587031215612b1357600080fd5b6000612b2187828801612977565b9450506020612b3287828801612977565b9350506040612b4387828801612a34565b925050606085013567ffffffffffffffff811115612b6057600080fd5b612b6c878288016129e0565b91505092959194509250565b60008060408385031215612b8b57600080fd5b6000612b9985828601612977565b9250506020612baa8582860161298c565b9150509250929050565b60008060408385031215612bc757600080fd5b6000612bd585828601612977565b9250506020612be685828601612a34565b9150509250929050565b600060208284031215612c0257600080fd5b6000612c108482850161298c565b91505092915050565b600080600060608486031215612c2e57600080fd5b6000612c3c868287016129a1565b935050602084013567ffffffffffffffff811115612c5957600080fd5b612c65868287016129e0565b9250506040612c7686828701612a34565b9150509250925092565b600060208284031215612c9257600080fd5b6000612ca0848285016129b6565b91505092915050565b600060208284031215612cbb57600080fd5b6000612cc9848285016129cb565b91505092915050565b600060208284031215612ce457600080fd5b600082013567ffffffffffffffff811115612cfe57600080fd5b612d0a84828501612a0a565b91505092915050565b600060208284031215612d2557600080fd5b6000612d3384828501612a34565b91505092915050565b612d458161383e565b82525050565b612d5481613850565b82525050565b612d638161385c565b82525050565b612d7a612d758261385c565b6139b7565b82525050565b6000612d8b826136db565b612d9581856136f1565b9350612da58185602086016138d8565b612dae81613aae565b840191505092915050565b6000612dc4826136e6565b612dce818561370d565b9350612dde8185602086016138d8565b612de781613aae565b840191505092915050565b6000612dfd826136e6565b612e07818561371e565b9350612e178185602086016138d8565b80840191505092915050565b6000612e3060188361370d565b9150612e3b82613abf565b602082019050919050565b6000612e53601f8361370d565b9150612e5e82613ae8565b602082019050919050565b6000612e76601c8361371e565b9150612e8182613b11565b601c82019050919050565b6000612e9960328361370d565b9150612ea482613b3a565b604082019050919050565b6000612ebc60268361370d565b9150612ec782613b89565b604082019050919050565b6000612edf60258361370d565b9150612eea82613bd8565b604082019050919050565b6000612f02601c8361370d565b9150612f0d82613c27565b602082019050919050565b6000612f2560248361370d565b9150612f3082613c50565b604082019050919050565b6000612f4860198361370d565b9150612f5382613c9f565b602082019050919050565b6000612f6b60228361370d565b9150612f7682613cc8565b604082019050919050565b6000612f8e60328361370d565b9150612f9982613d17565b604082019050919050565b6000612fb160298361370d565b9150612fbc82613d66565b604082019050919050565b6000612fd460228361370d565b9150612fdf82613db5565b604082019050919050565b6000612ff7603e8361370d565b915061300282613e04565b604082019050919050565b600061301a60208361370d565b915061302582613e53565b602082019050919050565b600061303d60058361371e565b915061304882613e7c565b600582019050919050565b600061306060208361370d565b915061306b82613ea5565b602082019050919050565b6000613083602f8361370d565b915061308e82613ece565b604082019050919050565b60006130a660188361370d565b91506130b182613f1d565b602082019050919050565b60006130c960218361370d565b91506130d482613f46565b604082019050919050565b60006130ec601b8361370d565b91506130f782613f95565b602082019050919050565b600061310f600083613702565b915061311a82613fbe565b600082019050919050565b6000613132601b8361370d565b915061313d82613fc1565b602082019050919050565b6000613155600f8361370d565b915061316082613fea565b602082019050919050565b6000613178602e8361370d565b915061318382614013565b604082019050919050565b600061319b60138361370d565b91506131a682614062565b602082019050919050565b6131ba816138b2565b82525050565b6131c9816138bc565b82525050565b60006131db8285612df2565b91506131e78284612df2565b91506131f282613030565b91508190509392505050565b600061320982612e69565b91506132158284612d69565b60208201915081905092915050565b600061322f82613102565b9150819050919050565b600060208201905061324e6000830184612d3c565b92915050565b60006080820190506132696000830187612d3c565b6132766020830186612d3c565b61328360408301856131b1565b81810360608301526132958184612d80565b905095945050505050565b60006060820190506132b56000830186612d3c565b6132c260208301856131b1565b6132cf6040830184612d3c565b949350505050565b60006020820190506132ec6000830184612d4b565b92915050565b60006080820190506133076000830187612d5a565b61331460208301866131c0565b6133216040830185612d5a565b61332e6060830184612d5a565b95945050505050565b600060208201905081810360008301526133518184612db9565b905092915050565b6000602082019050818103600083015261337281612e23565b9050919050565b6000602082019050818103600083015261339281612e46565b9050919050565b600060208201905081810360008301526133b281612e8c565b9050919050565b600060208201905081810360008301526133d281612eaf565b9050919050565b600060208201905081810360008301526133f281612ed2565b9050919050565b6000602082019050818103600083015261341281612ef5565b9050919050565b6000602082019050818103600083015261343281612f18565b9050919050565b6000602082019050818103600083015261345281612f3b565b9050919050565b6000602082019050818103600083015261347281612f5e565b9050919050565b6000602082019050818103600083015261349281612f81565b9050919050565b600060208201905081810360008301526134b281612fa4565b9050919050565b600060208201905081810360008301526134d281612fc7565b9050919050565b600060208201905081810360008301526134f281612fea565b9050919050565b600060208201905081810360008301526135128161300d565b9050919050565b6000602082019050818103600083015261353281613053565b9050919050565b6000602082019050818103600083015261355281613076565b9050919050565b6000602082019050818103600083015261357281613099565b9050919050565b60006020820190508181036000830152613592816130bc565b9050919050565b600060208201905081810360008301526135b2816130df565b9050919050565b600060208201905081810360008301526135d281613125565b9050919050565b600060208201905081810360008301526135f281613148565b9050919050565b600060208201905081810360008301526136128161316b565b9050919050565b600060208201905081810360008301526136328161318e565b9050919050565b600060208201905061364e60008301846131b1565b92915050565b600061365e61366f565b905061366a828261393d565b919050565b6000604051905090565b600067ffffffffffffffff82111561369457613693613a7f565b5b61369d82613aae565b9050602081019050919050565b600067ffffffffffffffff8211156136c5576136c4613a7f565b5b6136ce82613aae565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613734826138b2565b915061373f836138b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613774576137736139f2565b5b828201905092915050565b600061378a826138b2565b9150613795836138b2565b9250826137a5576137a4613a21565b5b828204905092915050565b60006137bb826138b2565b91506137c6836138b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ff576137fe6139f2565b5b828202905092915050565b6000613815826138b2565b9150613820836138b2565b925082821015613833576138326139f2565b5b828203905092915050565b600061384982613892565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138f65780820151818401526020810190506138db565b83811115613905576000848401525b50505050565b6000600282049050600182168061392357607f821691505b6020821081141561393757613936613a50565b5b50919050565b61394682613aae565b810181811067ffffffffffffffff8211171561396557613964613a7f565b5b80604052505050565b6000613979826138b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ac576139ab6139f2565b5b600182019050919050565b6000819050919050565b60006139cc826138b2565b91506139d7836138b2565b9250826139e7576139e6613a21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420686173682f7369676e61747572652070616972206f72207360008201527f69676e61747572652074696d6564206f75740000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206c696d697420657863656564656420282331303033290000000000600082015250565b50565b7f4d617820737570706c7920657863656564656420282331303032290000000000600082015250565b7f4d696e7420697320706175736564210000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6140948161383e565b811461409f57600080fd5b50565b6140ab81613850565b81146140b657600080fd5b50565b6140c28161385c565b81146140cd57600080fd5b50565b6140d981613866565b81146140e457600080fd5b50565b6140f0816138b2565b81146140fb57600080fd5b5056fea26469706673582212205c4ecd18e75b757c4e398e65d5bb55f7dc79b97b4f6b32417427bbf71d82002964736f6c63430008040033697066733a2f2f516d654d666155615a5776443157314c376466755938654237767274356a6e6e3570784d714e764a6b52676e51322f0000000000000000000000007942b5f952282410d56085e46262e12176600e01
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461063f578063d5abeb011461067c578063e985e9c5146106a7578063f2fde38b146106e4576101cd565b806395d89b4114610599578063a22cb465146105c4578063b071401b146105ed578063b88d4fde14610616576101cd565b80637ec4a659116100d15780637ec4a659146104dd5780638bbef906146105065780638da5cb5b1461054357806394354fd01461056e576101cd565b80636352211e1461044c57806370a0823114610489578063715018a6146104c6576101cd565b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a146103b15780635c975abb146103da57806362b99ad414610405578063631c1c5a14610430576101cd565b806323b872dd1461031f5780632fbba115146103485780633ccfd60b1461037157806342842e0e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313faede6146102a057806316c38b3c146102cb57806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c80565b61070d565b60405161020691906132d7565b60405180910390f35b34801561021b57600080fd5b506102246107ef565b6040516102319190613337565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d13565b610881565b60405161026e9190613239565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612bb4565b6108c7565b005b3480156102ac57600080fd5b506102b56109df565b6040516102c29190613639565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612bf0565b6109e5565b005b34801561030057600080fd5b50610309610a0a565b6040516103169190613639565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612aae565b610a1b565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d13565b610a7b565b005b34801561037d57600080fd5b50610386610a97565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612aae565b610b1f565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d13565b610b3f565b005b3480156103e657600080fd5b506103ef610b51565b6040516103fc91906132d7565b60405180910390f35b34801561041157600080fd5b5061041a610b64565b6040516104279190613337565b60405180910390f35b61044a60048036038101906104459190612c19565b610bf2565b005b34801561045857600080fd5b50610473600480360381019061046e9190612d13565b610f06565b6040516104809190613239565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612a49565b610fb8565b6040516104bd9190613639565b60405180910390f35b3480156104d257600080fd5b506104db611070565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190612cd2565b611084565b005b34801561051257600080fd5b5061052d60048036038101906105289190612a49565b6110a6565b60405161053a9190613639565b60405180910390f35b34801561054f57600080fd5b506105586110ef565b6040516105659190613239565b60405180910390f35b34801561057a57600080fd5b50610583611119565b6040516105909190613639565b60405180910390f35b3480156105a557600080fd5b506105ae61111f565b6040516105bb9190613337565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612b78565b6111b1565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612d13565b6111c7565b005b34801561062257600080fd5b5061063d60048036038101906106389190612afd565b6111d9565b005b34801561064b57600080fd5b5061066660048036038101906106619190612d13565b61123b565b6040516106739190613337565b60405180910390f35b34801561068857600080fd5b506106916112e2565b60405161069e9190613639565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612a72565b611306565b6040516106db91906132d7565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190612a49565b61139a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e857506107e78261141e565b5b9050919050565b6060600080546107fe9061390b565b80601f016020809104026020016040519081016040528092919081815260200182805461082a9061390b565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c82611488565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d282610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90613579565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109626114d3565b73ffffffffffffffffffffffffffffffffffffffff16148061099157506109908161098b6114d3565b611306565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906134d9565b60405180910390fd5b6109da83836114db565b505050565b600a5481565b6109ed611594565b80600b60006101000a81548160ff02191690831515021790555050565b6000610a166007611612565b905090565b610a2c610a266114d3565b82611620565b610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a62906135f9565b60405180910390fd5b610a768383836116b5565b505050565b610a83611594565b610a94610a8e6110ef565b8261191c565b50565b610a9f611594565b6000610aa96110ef565b73ffffffffffffffffffffffffffffffffffffffff1647604051610acc90613224565b60006040518083038185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b1c57600080fd5b50565b610b3a838383604051806020016040528060008152506111d9565b505050565b610b47611594565b80600a8190555050565b600b60009054906101000a900460ff1681565b60088054610b719061390b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9d9061390b565b8015610bea5780601f10610bbf57610100808354040283529160200191610bea565b820191906000526020600020905b815481529060010190602001808311610bcd57829003601f168201915b505050505081565b807f00000000000000000000000000000000000000000000000000000000000009c481610c1f6007611612565b610c299190613729565b1115610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c61906135b9565b60405180910390fd5b600081118015610cc6575060095481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc39190613729565b11155b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90613599565b60405180910390fd5b600b60009054906101000a900460ff1615610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906135d9565b60405180910390fd5b81600a54610d6391906137b0565b341015610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613619565b60405180910390fd5b60007f0000000000000000000000007942b5f952282410d56085e46262e12176600e019050600033600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205430604051602001610e20939291906132a0565b60405160208183030381529060405280519060200120861415610e8857610e4f610e49876119ea565b86611a1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8757600190505b5b80610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613479565b60405180910390fd5b610ed2338561191c565b7fe923f1ae2abf95fba64080dca4084b97e57ceddb8f45f6038172e39ac3b987be60405160405180910390a1505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613559565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613499565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611078611594565b6110826000611a41565b565b61108c611594565b80600890805190602001906110a2929190612858565b5050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606001805461112e9061390b565b80601f016020809104026020016040519081016040528092919081815260200182805461115a9061390b565b80156111a75780601f1061117c576101008083540402835291602001916111a7565b820191906000526020600020905b81548152906001019060200180831161118a57829003601f168201915b5050505050905090565b6111c36111bc6114d3565b8383611b07565b5050565b6111cf611594565b8060098190555050565b6111ea6111e46114d3565b83611620565b611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906135f9565b60405180910390fd5b61123584848484611c74565b50505050565b606061124682611cd0565b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613539565b60405180910390fd5b600061128f611d3c565b905060008151116112af57604051806020016040528060008152506112da565b806112b984611dce565b6040516020016112ca9291906131cf565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000009c481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a2611594565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906133b9565b60405180910390fd5b61141b81611a41565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61149181611cd0565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613559565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154e83610f06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61159c6114d3565b73ffffffffffffffffffffffffffffffffffffffff166115ba6110ef565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613519565b60405180910390fd5b565b600081600001549050919050565b60008061162c83610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166e575061166d8185611306565b5b806116ac57508373ffffffffffffffffffffffffffffffffffffffff1661169484610881565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116d582610f06565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906133d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290613419565b60405180910390fd5b6117a6838383611f7b565b6117b16000826114db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611801919061380a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118589190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611917838383611f80565b505050565b60005b81811015611957576119316007611f85565b6119448361193f6007611612565b611f9b565b808061194f9061396e565b91505061191f565b5080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a39190613729565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000816040516020016119fd91906131fe565b604051602081830303815290604052805190602001209050919050565b6000806000611a298585611fb9565b91509150611a368161200b565b819250505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613439565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6791906132d7565b60405180910390a3505050565b611c7f8484846116b5565b611c8b8484848461235c565b611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190613399565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611d4b9061390b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d779061390b565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b5050505050905090565b60606000821415611e16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f76565b600082905060005b60008214611e48578080611e319061396e565b915050600a82611e41919061377f565b9150611e1e565b60008167ffffffffffffffff811115611e8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ebc5781602001600182028036833780820191505090505b5090505b60008514611f6f57600182611ed5919061380a565b9150600a85611ee491906139c1565b6030611ef09190613729565b60f81b818381518110611f2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f68919061377f565b9450611ec0565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b611fb58282604051806020016040528060008152506124f3565b5050565b600080604183511415611ffb5760008060006020860151925060408601519150606086015160001a9050611fef8782858561254e565b94509450505050612004565b60006002915091505b9250929050565b60006004811115612045577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561207e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561208957612359565b600160048111156120c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156120fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613359565b60405180910390fd5b60026004811115612177577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613379565b60405180910390fd5b6003600481111561222b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612264577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613459565b60405180910390fd5b6004808111156122de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612317577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906134b9565b60405180910390fd5b5b50565b600061237d8473ffffffffffffffffffffffffffffffffffffffff1661265b565b156124e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a66114d3565b8786866040518563ffffffff1660e01b81526004016123c89493929190613254565b602060405180830381600087803b1580156123e257600080fd5b505af192505050801561241357506040513d601f19601f820116820180604052508101906124109190612ca9565b60015b612496573d8060008114612443576040519150601f19603f3d011682016040523d82523d6000602084013e612448565b606091505b5060008151141561248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590613399565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124eb565b600190505b949350505050565b6124fd838361267e565b61250a600084848461235c565b612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613399565b60405180910390fd5b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612589576000600391509150612652565b601b8560ff16141580156125a15750601c8560ff1614155b156125b3576000600491509150612652565b6000600187878787604051600081526020016040526040516125d894939291906132f2565b6020604051602081039080840390855afa1580156125fa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264957600060019250925050612652565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e5906134f9565b60405180910390fd5b6126f781611cd0565b15612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e906133f9565b60405180910390fd5b61274360008383611f7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127939190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285460008383611f80565b5050565b8280546128649061390b565b90600052602060002090601f01602090048101928261288657600085556128cd565b82601f1061289f57805160ff19168380011785556128cd565b828001600101855582156128cd579182015b828111156128cc5782518255916020019190600101906128b1565b5b5090506128da91906128de565b5090565b5b808211156128f75760008160009055506001016128df565b5090565b600061290e61290984613679565b613654565b90508281526020810184848401111561292657600080fd5b6129318482856138c9565b509392505050565b600061294c612947846136aa565b613654565b90508281526020810184848401111561296457600080fd5b61296f8482856138c9565b509392505050565b6000813590506129868161408b565b92915050565b60008135905061299b816140a2565b92915050565b6000813590506129b0816140b9565b92915050565b6000813590506129c5816140d0565b92915050565b6000815190506129da816140d0565b92915050565b600082601f8301126129f157600080fd5b8135612a018482602086016128fb565b91505092915050565b600082601f830112612a1b57600080fd5b8135612a2b848260208601612939565b91505092915050565b600081359050612a43816140e7565b92915050565b600060208284031215612a5b57600080fd5b6000612a6984828501612977565b91505092915050565b60008060408385031215612a8557600080fd5b6000612a9385828601612977565b9250506020612aa485828601612977565b9150509250929050565b600080600060608486031215612ac357600080fd5b6000612ad186828701612977565b9350506020612ae286828701612977565b9250506040612af386828701612a34565b9150509250925092565b60008060008060808587031215612b1357600080fd5b6000612b2187828801612977565b9450506020612b3287828801612977565b9350506040612b4387828801612a34565b925050606085013567ffffffffffffffff811115612b6057600080fd5b612b6c878288016129e0565b91505092959194509250565b60008060408385031215612b8b57600080fd5b6000612b9985828601612977565b9250506020612baa8582860161298c565b9150509250929050565b60008060408385031215612bc757600080fd5b6000612bd585828601612977565b9250506020612be685828601612a34565b9150509250929050565b600060208284031215612c0257600080fd5b6000612c108482850161298c565b91505092915050565b600080600060608486031215612c2e57600080fd5b6000612c3c868287016129a1565b935050602084013567ffffffffffffffff811115612c5957600080fd5b612c65868287016129e0565b9250506040612c7686828701612a34565b9150509250925092565b600060208284031215612c9257600080fd5b6000612ca0848285016129b6565b91505092915050565b600060208284031215612cbb57600080fd5b6000612cc9848285016129cb565b91505092915050565b600060208284031215612ce457600080fd5b600082013567ffffffffffffffff811115612cfe57600080fd5b612d0a84828501612a0a565b91505092915050565b600060208284031215612d2557600080fd5b6000612d3384828501612a34565b91505092915050565b612d458161383e565b82525050565b612d5481613850565b82525050565b612d638161385c565b82525050565b612d7a612d758261385c565b6139b7565b82525050565b6000612d8b826136db565b612d9581856136f1565b9350612da58185602086016138d8565b612dae81613aae565b840191505092915050565b6000612dc4826136e6565b612dce818561370d565b9350612dde8185602086016138d8565b612de781613aae565b840191505092915050565b6000612dfd826136e6565b612e07818561371e565b9350612e178185602086016138d8565b80840191505092915050565b6000612e3060188361370d565b9150612e3b82613abf565b602082019050919050565b6000612e53601f8361370d565b9150612e5e82613ae8565b602082019050919050565b6000612e76601c8361371e565b9150612e8182613b11565b601c82019050919050565b6000612e9960328361370d565b9150612ea482613b3a565b604082019050919050565b6000612ebc60268361370d565b9150612ec782613b89565b604082019050919050565b6000612edf60258361370d565b9150612eea82613bd8565b604082019050919050565b6000612f02601c8361370d565b9150612f0d82613c27565b602082019050919050565b6000612f2560248361370d565b9150612f3082613c50565b604082019050919050565b6000612f4860198361370d565b9150612f5382613c9f565b602082019050919050565b6000612f6b60228361370d565b9150612f7682613cc8565b604082019050919050565b6000612f8e60328361370d565b9150612f9982613d17565b604082019050919050565b6000612fb160298361370d565b9150612fbc82613d66565b604082019050919050565b6000612fd460228361370d565b9150612fdf82613db5565b604082019050919050565b6000612ff7603e8361370d565b915061300282613e04565b604082019050919050565b600061301a60208361370d565b915061302582613e53565b602082019050919050565b600061303d60058361371e565b915061304882613e7c565b600582019050919050565b600061306060208361370d565b915061306b82613ea5565b602082019050919050565b6000613083602f8361370d565b915061308e82613ece565b604082019050919050565b60006130a660188361370d565b91506130b182613f1d565b602082019050919050565b60006130c960218361370d565b91506130d482613f46565b604082019050919050565b60006130ec601b8361370d565b91506130f782613f95565b602082019050919050565b600061310f600083613702565b915061311a82613fbe565b600082019050919050565b6000613132601b8361370d565b915061313d82613fc1565b602082019050919050565b6000613155600f8361370d565b915061316082613fea565b602082019050919050565b6000613178602e8361370d565b915061318382614013565b604082019050919050565b600061319b60138361370d565b91506131a682614062565b602082019050919050565b6131ba816138b2565b82525050565b6131c9816138bc565b82525050565b60006131db8285612df2565b91506131e78284612df2565b91506131f282613030565b91508190509392505050565b600061320982612e69565b91506132158284612d69565b60208201915081905092915050565b600061322f82613102565b9150819050919050565b600060208201905061324e6000830184612d3c565b92915050565b60006080820190506132696000830187612d3c565b6132766020830186612d3c565b61328360408301856131b1565b81810360608301526132958184612d80565b905095945050505050565b60006060820190506132b56000830186612d3c565b6132c260208301856131b1565b6132cf6040830184612d3c565b949350505050565b60006020820190506132ec6000830184612d4b565b92915050565b60006080820190506133076000830187612d5a565b61331460208301866131c0565b6133216040830185612d5a565b61332e6060830184612d5a565b95945050505050565b600060208201905081810360008301526133518184612db9565b905092915050565b6000602082019050818103600083015261337281612e23565b9050919050565b6000602082019050818103600083015261339281612e46565b9050919050565b600060208201905081810360008301526133b281612e8c565b9050919050565b600060208201905081810360008301526133d281612eaf565b9050919050565b600060208201905081810360008301526133f281612ed2565b9050919050565b6000602082019050818103600083015261341281612ef5565b9050919050565b6000602082019050818103600083015261343281612f18565b9050919050565b6000602082019050818103600083015261345281612f3b565b9050919050565b6000602082019050818103600083015261347281612f5e565b9050919050565b6000602082019050818103600083015261349281612f81565b9050919050565b600060208201905081810360008301526134b281612fa4565b9050919050565b600060208201905081810360008301526134d281612fc7565b9050919050565b600060208201905081810360008301526134f281612fea565b9050919050565b600060208201905081810360008301526135128161300d565b9050919050565b6000602082019050818103600083015261353281613053565b9050919050565b6000602082019050818103600083015261355281613076565b9050919050565b6000602082019050818103600083015261357281613099565b9050919050565b60006020820190508181036000830152613592816130bc565b9050919050565b600060208201905081810360008301526135b2816130df565b9050919050565b600060208201905081810360008301526135d281613125565b9050919050565b600060208201905081810360008301526135f281613148565b9050919050565b600060208201905081810360008301526136128161316b565b9050919050565b600060208201905081810360008301526136328161318e565b9050919050565b600060208201905061364e60008301846131b1565b92915050565b600061365e61366f565b905061366a828261393d565b919050565b6000604051905090565b600067ffffffffffffffff82111561369457613693613a7f565b5b61369d82613aae565b9050602081019050919050565b600067ffffffffffffffff8211156136c5576136c4613a7f565b5b6136ce82613aae565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613734826138b2565b915061373f836138b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613774576137736139f2565b5b828201905092915050565b600061378a826138b2565b9150613795836138b2565b9250826137a5576137a4613a21565b5b828204905092915050565b60006137bb826138b2565b91506137c6836138b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ff576137fe6139f2565b5b828202905092915050565b6000613815826138b2565b9150613820836138b2565b925082821015613833576138326139f2565b5b828203905092915050565b600061384982613892565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138f65780820151818401526020810190506138db565b83811115613905576000848401525b50505050565b6000600282049050600182168061392357607f821691505b6020821081141561393757613936613a50565b5b50919050565b61394682613aae565b810181811067ffffffffffffffff8211171561396557613964613a7f565b5b80604052505050565b6000613979826138b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ac576139ab6139f2565b5b600182019050919050565b6000819050919050565b60006139cc826138b2565b91506139d7836138b2565b9250826139e7576139e6613a21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420686173682f7369676e61747572652070616972206f72207360008201527f69676e61747572652074696d6564206f75740000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206c696d697420657863656564656420282331303033290000000000600082015250565b50565b7f4d617820737570706c7920657863656564656420282331303032290000000000600082015250565b7f4d696e7420697320706175736564210000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6140948161383e565b811461409f57600080fd5b50565b6140ab81613850565b81146140b657600080fd5b50565b6140c28161385c565b81146140cd57600080fd5b50565b6140d981613866565b81146140e457600080fd5b50565b6140f0816138b2565b81146140fb57600080fd5b5056fea26469706673582212205c4ecd18e75b757c4e398e65d5bb55f7dc79b97b4f6b32417427bbf71d82002964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007942b5f952282410d56085e46262e12176600e01
-----Decoded View---------------
Arg [0] : _signer (address): 0x7942B5f952282410d56085E46262e12176600E01
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007942b5f952282410d56085e46262e12176600e01
Deployed Bytecode Sourcemap
48956:3434:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26666:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27593:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29106:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28623:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49281:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51117:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51363:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29806:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51985:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51208:147;;;;;;;;;;;;;:::i;:::-;;30213:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50771:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49319:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49113:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50039:724;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27304:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27035:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4441:103;;;;;;;;;;;;;:::i;:::-;;51003:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49907:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3793:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49237:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27762:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29349:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50859:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30469:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51466:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49189:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29575:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4699:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26666:305;26768:4;26820:25;26805:40;;;:11;:40;;;;:105;;;;26877:33;26862:48;;;:11;:48;;;;26805:105;:158;;;;26927:36;26951:11;26927:23;:36::i;:::-;26805:158;26785:178;;26666:305;;;:::o;27593:100::-;27647:13;27680:5;27673:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27593:100;:::o;29106:171::-;29182:7;29202:23;29217:7;29202:14;:23::i;:::-;29245:15;:24;29261:7;29245:24;;;;;;;;;;;;;;;;;;;;;29238:31;;29106:171;;;:::o;28623:417::-;28704:13;28720:23;28735:7;28720:14;:23::i;:::-;28704:39;;28768:5;28762:11;;:2;:11;;;;28754:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28862:5;28846:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28871:37;28888:5;28895:12;:10;:12::i;:::-;28871:16;:37::i;:::-;28846:62;28824:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29011:21;29020:2;29024:7;29011:8;:21::i;:::-;28623:417;;;:::o;49281:31::-;;;;:::o;51117:83::-;3679:13;:11;:13::i;:::-;51186:6:::1;51177;;:15;;;;;;;;;;;;;;;;;;51117:83:::0;:::o;51363:95::-;51407:7;51434:16;:6;:14;:16::i;:::-;51427:23;;51363:95;:::o;29806:336::-;30001:41;30020:12;:10;:12::i;:::-;30034:7;30001:18;:41::i;:::-;29993:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30106:28;30116:4;30122:2;30126:7;30106:9;:28::i;:::-;29806:336;;;:::o;51985:98::-;3679:13;:11;:13::i;:::-;52048:27:::1;52058:7;:5;:7::i;:::-;52067;52048:9;:27::i;:::-;51985:98:::0;:::o;51208:147::-;3679:13;:11;:13::i;:::-;51257:7:::1;51278;:5;:7::i;:::-;51270:21;;51299;51270:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51256:69;;;51344:2;51336:11;;;::::0;::::1;;3703:1;51208:147::o:0;30213:185::-;30351:39;30368:4;30374:2;30378:7;30351:39;;;;;;;;;;;;:16;:39::i;:::-;30213:185;;;:::o;50771:80::-;3679:13;:11;:13::i;:::-;50838:5:::1;50831:4;:12;;;;50771:80:::0;:::o;49319:25::-;;;;;;;;;;;;;:::o;49113:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50039:724::-;50145:11;49709:9;49694:11;49675:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;49667:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49783:1;49769:11;:15;:76;;;;;49827:18;;49812:11;49788:9;:21;49798:10;49788:21;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:57;;49769:76;49761:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;50181:6:::1;;;;;;;;;;;50180:7;50172:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;50246:11;50239:4;;:18;;;;:::i;:::-;50226:9;:31;;50218:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50294:15;50312:6;50294:24;;50329:10;50394;50406:9;:21;50416:10;50406:21;;;;;;;;;;;;;;;;50437:4;50383:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50373:71;;;;;;50364:5;:80;50360:238;;;50476:62;50490:35;50519:5;50490:28;:35::i;:::-;50527:10;50476:13;:62::i;:::-;50465:73;;:7;:73;;;50461:126;;;50567:4;50559:12;;50461:126;50360:238;50626:5;50618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50697:34;50707:10;50719:11;50697:9;:34::i;:::-;50747:8;;;;;;;;;;49890:1;;50039:724:::0;;;;:::o;27304:222::-;27376:7;27396:13;27412:7;:16;27420:7;27412:16;;;;;;;;;;;;;;;;;;;;;27396:32;;27464:1;27447:19;;:5;:19;;;;27439:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27513:5;27506:12;;;27304:222;;;:::o;27035:207::-;27107:7;27152:1;27135:19;;:5;:19;;;;27127:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27218:9;:16;27228:5;27218:16;;;;;;;;;;;;;;;;27211:23;;27035:207;;;:::o;4441:103::-;3679:13;:11;:13::i;:::-;4506:30:::1;4533:1;4506:18;:30::i;:::-;4441:103::o:0;51003:106::-;3679:13;:11;:13::i;:::-;51091:10:::1;51079:9;:22;;;;;;;;;;;;:::i;:::-;;51003:106:::0;:::o;49907:124::-;49977:7;50004:9;:19;50014:8;50004:19;;;;;;;;;;;;;;;;49997:26;;49907:124;;;:::o;3793:87::-;3839:7;3866:6;;;;;;;;;;;3859:13;;3793:87;:::o;49237:37::-;;;;:::o;27762:104::-;27818:13;27851:7;27844:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27762:104;:::o;29349:155::-;29444:52;29463:12;:10;:12::i;:::-;29477:8;29487;29444:18;:52::i;:::-;29349:155;;:::o;50859:136::-;3679:13;:11;:13::i;:::-;50968:19:::1;50947:18;:40;;;;50859:136:::0;:::o;30469:323::-;30643:41;30662:12;:10;:12::i;:::-;30676:7;30643:18;:41::i;:::-;30635:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30746:38;30760:4;30766:2;30770:7;30779:4;30746:13;:38::i;:::-;30469:323;;;;:::o;51466:393::-;51540:13;51574:17;51582:8;51574:7;:17::i;:::-;51566:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51656:28;51687:10;:8;:10::i;:::-;51656:41;;51746:1;51721:14;51715:28;:32;:136;;;;;;;;;;;;;;;;;51787:14;51803:19;:8;:17;:19::i;:::-;51770:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51715:136;51708:143;;;51466:393;;;:::o;49189:41::-;;;:::o;29575:164::-;29672:4;29696:18;:25;29715:5;29696:25;;;;;;;;;;;;;;;:35;29722:8;29696:35;;;;;;;;;;;;;;;;;;;;;;;;;29689:42;;29575:164;;;;:::o;4699:201::-;3679:13;:11;:13::i;:::-;4808:1:::1;4788:22;;:8;:22;;;;4780:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4864:28;4883:8;4864:18;:28::i;:::-;4699:201:::0;:::o;24218:157::-;24303:4;24342:25;24327:40;;;:11;:40;;;;24320:47;;24218:157;;;:::o;37081:135::-;37163:16;37171:7;37163;:16::i;:::-;37155:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37081:135;:::o;2312:98::-;2365:7;2392:10;2385:17;;2312:98;:::o;36360:174::-;36462:2;36435:15;:24;36451:7;36435:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36518:7;36514:2;36480:46;;36489:23;36504:7;36489:14;:23::i;:::-;36480:46;;;;;;;;;;;;36360:174;;:::o;3958:132::-;4033:12;:10;:12::i;:::-;4022:23;;:7;:5;:7::i;:::-;:23;;;4014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3958:132::o;1006:114::-;1071:7;1098;:14;;;1091:21;;1006:114;;;:::o;32593:264::-;32686:4;32703:13;32719:23;32734:7;32719:14;:23::i;:::-;32703:39;;32772:5;32761:16;;:7;:16;;;:52;;;;32781:32;32798:5;32805:7;32781:16;:32::i;:::-;32761:52;:87;;;;32841:7;32817:31;;:20;32829:7;32817:11;:20::i;:::-;:31;;;32761:87;32753:96;;;32593:264;;;;:::o;35616:625::-;35775:4;35748:31;;:23;35763:7;35748:14;:23::i;:::-;:31;;;35740:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35854:1;35840:16;;:2;:16;;;;35832:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35910:39;35931:4;35937:2;35941:7;35910:20;:39::i;:::-;36014:29;36031:1;36035:7;36014:8;:29::i;:::-;36075:1;36056:9;:15;36066:4;36056:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36104:1;36087:9;:13;36097:2;36087:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36135:2;36116:7;:16;36124:7;36116:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36174:7;36170:2;36155:27;;36164:4;36155:27;;;;;;;;;;;;36195:38;36215:4;36221:2;36225:7;36195:19;:38::i;:::-;35616:625;;;:::o;52091:296::-;52175:9;52170:140;52194:11;52190:1;:15;52170:140;;;52227:18;:6;:16;:18::i;:::-;52260:38;52270:9;52281:16;:6;:14;:16::i;:::-;52260:9;:38::i;:::-;52207:3;;;;;:::i;:::-;;;;52170:140;;;;52368:11;52344:9;:21;52354:10;52344:21;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;52320:9;:21;52330:10;52320:21;;;;;;;;;;;;;;;:59;;;;52091:296;;:::o;47538:269::-;47607:7;47793:4;47740:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;47730:69;;;;;;47723:76;;47538:269;;;:::o;43736:231::-;43814:7;43835:17;43854:18;43876:27;43887:4;43893:9;43876:10;:27::i;:::-;43834:69;;;;43914:18;43926:5;43914:11;:18::i;:::-;43950:9;43943:16;;;;43736:231;;;;:::o;5060:191::-;5134:16;5153:6;;;;;;;;;;;5134:25;;5179:8;5170:6;;:17;;;;;;;;;;;;;;;;;;5234:8;5203:40;;5224:8;5203:40;;;;;;;;;;;;5060:191;;:::o;36677:315::-;36832:8;36823:17;;:5;:17;;;;36815:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36919:8;36881:18;:25;36900:5;36881:25;;;;;;;;;;;;;;;:35;36907:8;36881:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36965:8;36943:41;;36958:5;36943:41;;;36975:8;36943:41;;;;;;:::i;:::-;;;;;;;;36677:315;;;:::o;31673:313::-;31829:28;31839:4;31845:2;31849:7;31829:9;:28::i;:::-;31876:47;31899:4;31905:2;31909:7;31918:4;31876:22;:47::i;:::-;31868:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31673:313;;;;:::o;32299:127::-;32364:4;32416:1;32388:30;;:7;:16;32396:7;32388:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32381:37;;32299:127;;;:::o;51867:110::-;51927:13;51960:9;51953:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51867:110;:::o;14309:723::-;14365:13;14595:1;14586:5;:10;14582:53;;;14613:10;;;;;;;;;;;;;;;;;;;;;14582:53;14645:12;14660:5;14645:20;;14676:14;14701:78;14716:1;14708:4;:9;14701:78;;14734:8;;;;;:::i;:::-;;;;14765:2;14757:10;;;;;:::i;:::-;;;14701:78;;;14789:19;14821:6;14811:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14789:39;;14839:154;14855:1;14846:5;:10;14839:154;;14883:1;14873:11;;;;;:::i;:::-;;;14950:2;14942:5;:10;;;;:::i;:::-;14929:2;:24;;;;:::i;:::-;14916:39;;14899:6;14906;14899:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;14979:2;14970:11;;;;;:::i;:::-;;;14839:154;;;15017:6;15003:21;;;;;14309:723;;;;:::o;39205:126::-;;;;:::o;39716:125::-;;;;:::o;1128:127::-;1235:1;1217:7;:14;;;:19;;;;;;;;;;;1128:127;:::o;33199:110::-;33275:26;33285:2;33289:7;33275:26;;;;;;;;;;;;:9;:26::i;:::-;33199:110;;:::o;42187:747::-;42268:7;42277:12;42326:2;42306:9;:16;:22;42302:625;;;42345:9;42369;42393:7;42650:4;42639:9;42635:20;42629:27;42624:32;;42700:4;42689:9;42685:20;42679:27;42674:32;;42758:4;42747:9;42743:20;42737:27;42734:1;42729:36;42724:41;;42801:25;42812:4;42818:1;42821;42824;42801:10;:25::i;:::-;42794:32;;;;;;;;;42302:625;42875:1;42879:35;42859:56;;;;42187:747;;;;;;:::o;40458:643::-;40536:20;40527:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;40523:571;;;40573:7;;40523:571;40634:29;40625:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;40621:473;;;40680:34;;;;;;;;;;:::i;:::-;;;;;;;;40621:473;40745:35;40736:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;40732:362;;;40797:41;;;;;;;;;;:::i;:::-;;;;;;;;40732:362;40869:30;40860:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;40856:238;;;40916:44;;;;;;;;;;:::i;:::-;;;;;;;;40856:238;40991:30;40982:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;40978:116;;;41038:44;;;;;;;;;;:::i;:::-;;;;;;;;40978:116;40458:643;;:::o;37780:853::-;37934:4;37955:15;:2;:13;;;:15::i;:::-;37951:675;;;38007:2;37991:36;;;38028:12;:10;:12::i;:::-;38042:4;38048:7;38057:4;37991:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37987:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38249:1;38232:6;:13;:18;38228:328;;;38275:60;;;;;;;;;;:::i;:::-;;;;;;;;38228:328;38506:6;38500:13;38491:6;38487:2;38483:15;38476:38;37987:584;38123:41;;;38113:51;;;:6;:51;;;;38106:58;;;;;37951:675;38610:4;38603:11;;37780:853;;;;;;;:::o;33536:319::-;33665:18;33671:2;33675:7;33665:5;:18::i;:::-;33716:53;33747:1;33751:2;33755:7;33764:4;33716:22;:53::i;:::-;33694:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33536:319;;;:::o;45188:1632::-;45319:7;45328:12;46253:66;46248:1;46240:10;;:79;46236:163;;;46352:1;46356:30;46336:51;;;;;;46236:163;46418:2;46413:1;:7;;;;:18;;;;;46429:2;46424:1;:7;;;;46413:18;46409:102;;;46464:1;46468:30;46448:51;;;;;;46409:102;46608:14;46625:24;46635:4;46641:1;46644;46647;46625:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46608:41;;46682:1;46664:20;;:6;:20;;;46660:103;;;46717:1;46721:29;46701:50;;;;;;;46660:103;46783:6;46791:20;46775:37;;;;;45188:1632;;;;;;;;:::o;6525:326::-;6585:4;6842:1;6820:7;:19;;;:23;6813:30;;6525:326;;;:::o;34191:439::-;34285:1;34271:16;;:2;:16;;;;34263:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34344:16;34352:7;34344;:16::i;:::-;34343:17;34335:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34406:45;34435:1;34439:2;34443:7;34406:20;:45::i;:::-;34481:1;34464:9;:13;34474:2;34464:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34512:2;34493:7;:16;34501:7;34493:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34557:7;34553:2;34532:33;;34549:1;34532:33;;;;;;;;;;;;34578:44;34606:1;34610:2;34614:7;34578:19;:44::i;:::-;34191:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:139::-;1037:5;1075:6;1062:20;1053:29;;1091:33;1118:5;1091:33;:::i;:::-;1043:87;;;;:::o;1136:137::-;1181:5;1219:6;1206:20;1197:29;;1235:32;1261:5;1235:32;:::i;:::-;1187:86;;;;:::o;1279:141::-;1335:5;1366:6;1360:13;1351:22;;1382:32;1408:5;1382:32;:::i;:::-;1341:79;;;;:::o;1439:271::-;1494:5;1543:3;1536:4;1528:6;1524:17;1520:27;1510:2;;1561:1;1558;1551:12;1510:2;1601:6;1588:20;1626:78;1700:3;1692:6;1685:4;1677:6;1673:17;1626:78;:::i;:::-;1617:87;;1500:210;;;;;:::o;1730:273::-;1786:5;1835:3;1828:4;1820:6;1816:17;1812:27;1802:2;;1853:1;1850;1843:12;1802:2;1893:6;1880:20;1918:79;1993:3;1985:6;1978:4;1970:6;1966:17;1918:79;:::i;:::-;1909:88;;1792:211;;;;;:::o;2009:139::-;2055:5;2093:6;2080:20;2071:29;;2109:33;2136:5;2109:33;:::i;:::-;2061:87;;;;:::o;2154:262::-;2213:6;2262:2;2250:9;2241:7;2237:23;2233:32;2230:2;;;2278:1;2275;2268:12;2230:2;2321:1;2346:53;2391:7;2382:6;2371:9;2367:22;2346:53;:::i;:::-;2336:63;;2292:117;2220:196;;;;:::o;2422:407::-;2490:6;2498;2547:2;2535:9;2526:7;2522:23;2518:32;2515:2;;;2563:1;2560;2553:12;2515:2;2606:1;2631:53;2676:7;2667:6;2656:9;2652:22;2631:53;:::i;:::-;2621:63;;2577:117;2733:2;2759:53;2804:7;2795:6;2784:9;2780:22;2759:53;:::i;:::-;2749:63;;2704:118;2505:324;;;;;:::o;2835:552::-;2912:6;2920;2928;2977:2;2965:9;2956:7;2952:23;2948:32;2945:2;;;2993:1;2990;2983:12;2945:2;3036:1;3061:53;3106:7;3097:6;3086:9;3082:22;3061:53;:::i;:::-;3051:63;;3007:117;3163:2;3189:53;3234:7;3225:6;3214:9;3210:22;3189:53;:::i;:::-;3179:63;;3134:118;3291:2;3317:53;3362:7;3353:6;3342:9;3338:22;3317:53;:::i;:::-;3307:63;;3262:118;2935:452;;;;;:::o;3393:809::-;3488:6;3496;3504;3512;3561:3;3549:9;3540:7;3536:23;3532:33;3529:2;;;3578:1;3575;3568:12;3529:2;3621:1;3646:53;3691:7;3682:6;3671:9;3667:22;3646:53;:::i;:::-;3636:63;;3592:117;3748:2;3774:53;3819:7;3810:6;3799:9;3795:22;3774:53;:::i;:::-;3764:63;;3719:118;3876:2;3902:53;3947:7;3938:6;3927:9;3923:22;3902:53;:::i;:::-;3892:63;;3847:118;4032:2;4021:9;4017:18;4004:32;4063:18;4055:6;4052:30;4049:2;;;4095:1;4092;4085:12;4049:2;4123:62;4177:7;4168:6;4157:9;4153:22;4123:62;:::i;:::-;4113:72;;3975:220;3519:683;;;;;;;:::o;4208:401::-;4273:6;4281;4330:2;4318:9;4309:7;4305:23;4301:32;4298:2;;;4346:1;4343;4336:12;4298:2;4389:1;4414:53;4459:7;4450:6;4439:9;4435:22;4414:53;:::i;:::-;4404:63;;4360:117;4516:2;4542:50;4584:7;4575:6;4564:9;4560:22;4542:50;:::i;:::-;4532:60;;4487:115;4288:321;;;;;:::o;4615:407::-;4683:6;4691;4740:2;4728:9;4719:7;4715:23;4711:32;4708:2;;;4756:1;4753;4746:12;4708:2;4799:1;4824:53;4869:7;4860:6;4849:9;4845:22;4824:53;:::i;:::-;4814:63;;4770:117;4926:2;4952:53;4997:7;4988:6;4977:9;4973:22;4952:53;:::i;:::-;4942:63;;4897:118;4698:324;;;;;:::o;5028:256::-;5084:6;5133:2;5121:9;5112:7;5108:23;5104:32;5101:2;;;5149:1;5146;5139:12;5101:2;5192:1;5217:50;5259:7;5250:6;5239:9;5235:22;5217:50;:::i;:::-;5207:60;;5163:114;5091:193;;;;:::o;5290:663::-;5376:6;5384;5392;5441:2;5429:9;5420:7;5416:23;5412:32;5409:2;;;5457:1;5454;5447:12;5409:2;5500:1;5525:53;5570:7;5561:6;5550:9;5546:22;5525:53;:::i;:::-;5515:63;;5471:117;5655:2;5644:9;5640:18;5627:32;5686:18;5678:6;5675:30;5672:2;;;5718:1;5715;5708:12;5672:2;5746:62;5800:7;5791:6;5780:9;5776:22;5746:62;:::i;:::-;5736:72;;5598:220;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;5399:554;;;;;:::o;5959:260::-;6017:6;6066:2;6054:9;6045:7;6041:23;6037:32;6034:2;;;6082:1;6079;6072:12;6034:2;6125:1;6150:52;6194:7;6185:6;6174:9;6170:22;6150:52;:::i;:::-;6140:62;;6096:116;6024:195;;;;:::o;6225:282::-;6294:6;6343:2;6331:9;6322:7;6318:23;6314:32;6311:2;;;6359:1;6356;6349:12;6311:2;6402:1;6427:63;6482:7;6473:6;6462:9;6458:22;6427:63;:::i;:::-;6417:73;;6373:127;6301:206;;;;:::o;6513:375::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:2;;;6647:1;6644;6637:12;6599:2;6718:1;6707:9;6703:17;6690:31;6748:18;6740:6;6737:30;6734:2;;;6780:1;6777;6770:12;6734:2;6808:63;6863:7;6854:6;6843:9;6839:22;6808:63;:::i;:::-;6798:73;;6661:220;6589:299;;;;:::o;6894:262::-;6953:6;7002:2;6990:9;6981:7;6977:23;6973:32;6970:2;;;7018:1;7015;7008:12;6970:2;7061:1;7086:53;7131:7;7122:6;7111:9;7107:22;7086:53;:::i;:::-;7076:63;;7032:117;6960:196;;;;:::o;7162:118::-;7249:24;7267:5;7249:24;:::i;:::-;7244:3;7237:37;7227:53;;:::o;7286:109::-;7367:21;7382:5;7367:21;:::i;:::-;7362:3;7355:34;7345:50;;:::o;7401:118::-;7488:24;7506:5;7488:24;:::i;:::-;7483:3;7476:37;7466:53;;:::o;7525:157::-;7630:45;7650:24;7668:5;7650:24;:::i;:::-;7630:45;:::i;:::-;7625:3;7618:58;7608:74;;:::o;7688:360::-;7774:3;7802:38;7834:5;7802:38;:::i;:::-;7856:70;7919:6;7914:3;7856:70;:::i;:::-;7849:77;;7935:52;7980:6;7975:3;7968:4;7961:5;7957:16;7935:52;:::i;:::-;8012:29;8034:6;8012:29;:::i;:::-;8007:3;8003:39;7996:46;;7778:270;;;;;:::o;8054:364::-;8142:3;8170:39;8203:5;8170:39;:::i;:::-;8225:71;8289:6;8284:3;8225:71;:::i;:::-;8218:78;;8305:52;8350:6;8345:3;8338:4;8331:5;8327:16;8305:52;:::i;:::-;8382:29;8404:6;8382:29;:::i;:::-;8377:3;8373:39;8366:46;;8146:272;;;;;:::o;8424:377::-;8530:3;8558:39;8591:5;8558:39;:::i;:::-;8613:89;8695:6;8690:3;8613:89;:::i;:::-;8606:96;;8711:52;8756:6;8751:3;8744:4;8737:5;8733:16;8711:52;:::i;:::-;8788:6;8783:3;8779:16;8772:23;;8534:267;;;;;:::o;8807:366::-;8949:3;8970:67;9034:2;9029:3;8970:67;:::i;:::-;8963:74;;9046:93;9135:3;9046:93;:::i;:::-;9164:2;9159:3;9155:12;9148:19;;8953:220;;;:::o;9179:366::-;9321:3;9342:67;9406:2;9401:3;9342:67;:::i;:::-;9335:74;;9418:93;9507:3;9418:93;:::i;:::-;9536:2;9531:3;9527:12;9520:19;;9325:220;;;:::o;9551:402::-;9711:3;9732:85;9814:2;9809:3;9732:85;:::i;:::-;9725:92;;9826:93;9915:3;9826:93;:::i;:::-;9944:2;9939:3;9935:12;9928:19;;9715:238;;;:::o;9959:366::-;10101:3;10122:67;10186:2;10181:3;10122:67;:::i;:::-;10115:74;;10198:93;10287:3;10198:93;:::i;:::-;10316:2;10311:3;10307:12;10300:19;;10105:220;;;:::o;10331:366::-;10473:3;10494:67;10558:2;10553:3;10494:67;:::i;:::-;10487:74;;10570:93;10659:3;10570:93;:::i;:::-;10688:2;10683:3;10679:12;10672:19;;10477:220;;;:::o;10703:366::-;10845:3;10866:67;10930:2;10925:3;10866:67;:::i;:::-;10859:74;;10942:93;11031:3;10942:93;:::i;:::-;11060:2;11055:3;11051:12;11044:19;;10849:220;;;:::o;11075:366::-;11217:3;11238:67;11302:2;11297:3;11238:67;:::i;:::-;11231:74;;11314:93;11403:3;11314:93;:::i;:::-;11432:2;11427:3;11423:12;11416:19;;11221:220;;;:::o;11447:366::-;11589:3;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11686:93;11775:3;11686:93;:::i;:::-;11804:2;11799:3;11795:12;11788:19;;11593:220;;;:::o;11819:366::-;11961:3;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12058:93;12147:3;12058:93;:::i;:::-;12176:2;12171:3;12167:12;12160:19;;11965:220;;;:::o;12191:366::-;12333:3;12354:67;12418:2;12413:3;12354:67;:::i;:::-;12347:74;;12430:93;12519:3;12430:93;:::i;:::-;12548:2;12543:3;12539:12;12532:19;;12337:220;;;:::o;12563:366::-;12705:3;12726:67;12790:2;12785:3;12726:67;:::i;:::-;12719:74;;12802:93;12891:3;12802:93;:::i;:::-;12920:2;12915:3;12911:12;12904:19;;12709:220;;;:::o;12935:366::-;13077:3;13098:67;13162:2;13157:3;13098:67;:::i;:::-;13091:74;;13174:93;13263:3;13174:93;:::i;:::-;13292:2;13287:3;13283:12;13276:19;;13081:220;;;:::o;13307:366::-;13449:3;13470:67;13534:2;13529:3;13470:67;:::i;:::-;13463:74;;13546:93;13635:3;13546:93;:::i;:::-;13664:2;13659:3;13655:12;13648:19;;13453:220;;;:::o;13679:366::-;13821:3;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13918:93;14007:3;13918:93;:::i;:::-;14036:2;14031:3;14027:12;14020:19;;13825:220;;;:::o;14051:366::-;14193:3;14214:67;14278:2;14273:3;14214:67;:::i;:::-;14207:74;;14290:93;14379:3;14290:93;:::i;:::-;14408:2;14403:3;14399:12;14392:19;;14197:220;;;:::o;14423:400::-;14583:3;14604:84;14686:1;14681:3;14604:84;:::i;:::-;14597:91;;14697:93;14786:3;14697:93;:::i;:::-;14815:1;14810:3;14806:11;14799:18;;14587:236;;;:::o;14829:366::-;14971:3;14992:67;15056:2;15051:3;14992:67;:::i;:::-;14985:74;;15068:93;15157:3;15068:93;:::i;:::-;15186:2;15181:3;15177:12;15170:19;;14975:220;;;:::o;15201:366::-;15343:3;15364:67;15428:2;15423:3;15364:67;:::i;:::-;15357:74;;15440:93;15529:3;15440:93;:::i;:::-;15558:2;15553:3;15549:12;15542:19;;15347:220;;;:::o;15573:366::-;15715:3;15736:67;15800:2;15795:3;15736:67;:::i;:::-;15729:74;;15812:93;15901:3;15812:93;:::i;:::-;15930:2;15925:3;15921:12;15914:19;;15719:220;;;:::o;15945:366::-;16087:3;16108:67;16172:2;16167:3;16108:67;:::i;:::-;16101:74;;16184:93;16273:3;16184:93;:::i;:::-;16302:2;16297:3;16293:12;16286:19;;16091:220;;;:::o;16317:366::-;16459:3;16480:67;16544:2;16539:3;16480:67;:::i;:::-;16473:74;;16556:93;16645:3;16556:93;:::i;:::-;16674:2;16669:3;16665:12;16658:19;;16463:220;;;:::o;16689:398::-;16848:3;16869:83;16950:1;16945:3;16869:83;:::i;:::-;16862:90;;16961:93;17050:3;16961:93;:::i;:::-;17079:1;17074:3;17070:11;17063:18;;16852:235;;;:::o;17093:366::-;17235:3;17256:67;17320:2;17315:3;17256:67;:::i;:::-;17249:74;;17332:93;17421:3;17332:93;:::i;:::-;17450:2;17445:3;17441:12;17434:19;;17239:220;;;:::o;17465:366::-;17607:3;17628:67;17692:2;17687:3;17628:67;:::i;:::-;17621:74;;17704:93;17793:3;17704:93;:::i;:::-;17822:2;17817:3;17813:12;17806:19;;17611:220;;;:::o;17837:366::-;17979:3;18000:67;18064:2;18059:3;18000:67;:::i;:::-;17993:74;;18076:93;18165:3;18076:93;:::i;:::-;18194:2;18189:3;18185:12;18178:19;;17983:220;;;:::o;18209:366::-;18351:3;18372:67;18436:2;18431:3;18372:67;:::i;:::-;18365:74;;18448:93;18537:3;18448:93;:::i;:::-;18566:2;18561:3;18557:12;18550:19;;18355:220;;;:::o;18581:118::-;18668:24;18686:5;18668:24;:::i;:::-;18663:3;18656:37;18646:53;;:::o;18705:112::-;18788:22;18804:5;18788:22;:::i;:::-;18783:3;18776:35;18766:51;;:::o;18823:701::-;19104:3;19126:95;19217:3;19208:6;19126:95;:::i;:::-;19119:102;;19238:95;19329:3;19320:6;19238:95;:::i;:::-;19231:102;;19350:148;19494:3;19350:148;:::i;:::-;19343:155;;19515:3;19508:10;;19108:416;;;;;:::o;19530:522::-;19743:3;19765:148;19909:3;19765:148;:::i;:::-;19758:155;;19923:75;19994:3;19985:6;19923:75;:::i;:::-;20023:2;20018:3;20014:12;20007:19;;20043:3;20036:10;;19747:305;;;;:::o;20058:379::-;20242:3;20264:147;20407:3;20264:147;:::i;:::-;20257:154;;20428:3;20421:10;;20246:191;;;:::o;20443:222::-;20536:4;20574:2;20563:9;20559:18;20551:26;;20587:71;20655:1;20644:9;20640:17;20631:6;20587:71;:::i;:::-;20541:124;;;;:::o;20671:640::-;20866:4;20904:3;20893:9;20889:19;20881:27;;20918:71;20986:1;20975:9;20971:17;20962:6;20918:71;:::i;:::-;20999:72;21067:2;21056:9;21052:18;21043:6;20999:72;:::i;:::-;21081;21149:2;21138:9;21134:18;21125:6;21081:72;:::i;:::-;21200:9;21194:4;21190:20;21185:2;21174:9;21170:18;21163:48;21228:76;21299:4;21290:6;21228:76;:::i;:::-;21220:84;;20871:440;;;;;;;:::o;21317:442::-;21466:4;21504:2;21493:9;21489:18;21481:26;;21517:71;21585:1;21574:9;21570:17;21561:6;21517:71;:::i;:::-;21598:72;21666:2;21655:9;21651:18;21642:6;21598:72;:::i;:::-;21680;21748:2;21737:9;21733:18;21724:6;21680:72;:::i;:::-;21471:288;;;;;;:::o;21765:210::-;21852:4;21890:2;21879:9;21875:18;21867:26;;21903:65;21965:1;21954:9;21950:17;21941:6;21903:65;:::i;:::-;21857:118;;;;:::o;21981:545::-;22154:4;22192:3;22181:9;22177:19;22169:27;;22206:71;22274:1;22263:9;22259:17;22250:6;22206:71;:::i;:::-;22287:68;22351:2;22340:9;22336:18;22327:6;22287:68;:::i;:::-;22365:72;22433:2;22422:9;22418:18;22409:6;22365:72;:::i;:::-;22447;22515:2;22504:9;22500:18;22491:6;22447:72;:::i;:::-;22159:367;;;;;;;:::o;22532:313::-;22645:4;22683:2;22672:9;22668:18;22660:26;;22732:9;22726:4;22722:20;22718:1;22707:9;22703:17;22696:47;22760:78;22833:4;22824:6;22760:78;:::i;:::-;22752:86;;22650:195;;;;:::o;22851:419::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;23022:248;;;:::o;23276:419::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23447:248;;;:::o;23701:419::-;23867:4;23905:2;23894:9;23890:18;23882:26;;23954:9;23948:4;23944:20;23940:1;23929:9;23925:17;23918:47;23982:131;24108:4;23982:131;:::i;:::-;23974:139;;23872:248;;;:::o;24126:419::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24379:9;24373:4;24369:20;24365:1;24354:9;24350:17;24343:47;24407:131;24533:4;24407:131;:::i;:::-;24399:139;;24297:248;;;:::o;24551:419::-;24717:4;24755:2;24744:9;24740:18;24732:26;;24804:9;24798:4;24794:20;24790:1;24779:9;24775:17;24768:47;24832:131;24958:4;24832:131;:::i;:::-;24824:139;;24722:248;;;:::o;24976:419::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25229:9;25223:4;25219:20;25215:1;25204:9;25200:17;25193:47;25257:131;25383:4;25257:131;:::i;:::-;25249:139;;25147:248;;;:::o;25401:419::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25572:248;;;:::o;25826:419::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25997:248;;;:::o;26251:419::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26422:248;;;:::o;26676:419::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26847:248;;;:::o;27101:419::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27272:248;;;:::o;27526:419::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27697:248;;;:::o;27951:419::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;28122:248;;;:::o;28376:419::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28547:248;;;:::o;28801:419::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28972:248;;;:::o;29226:419::-;29392:4;29430:2;29419:9;29415:18;29407:26;;29479:9;29473:4;29469:20;29465:1;29454:9;29450:17;29443:47;29507:131;29633:4;29507:131;:::i;:::-;29499:139;;29397:248;;;:::o;29651:419::-;29817:4;29855:2;29844:9;29840:18;29832:26;;29904:9;29898:4;29894:20;29890:1;29879:9;29875:17;29868:47;29932:131;30058:4;29932:131;:::i;:::-;29924:139;;29822:248;;;:::o;30076:419::-;30242:4;30280:2;30269:9;30265:18;30257:26;;30329:9;30323:4;30319:20;30315:1;30304:9;30300:17;30293:47;30357:131;30483:4;30357:131;:::i;:::-;30349:139;;30247:248;;;:::o;30501:419::-;30667:4;30705:2;30694:9;30690:18;30682:26;;30754:9;30748:4;30744:20;30740:1;30729:9;30725:17;30718:47;30782:131;30908:4;30782:131;:::i;:::-;30774:139;;30672:248;;;:::o;30926:419::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;31097:248;;;:::o;31351:419::-;31517:4;31555:2;31544:9;31540:18;31532:26;;31604:9;31598:4;31594:20;31590:1;31579:9;31575:17;31568:47;31632:131;31758:4;31632:131;:::i;:::-;31624:139;;31522:248;;;:::o;31776:419::-;31942:4;31980:2;31969:9;31965:18;31957:26;;32029:9;32023:4;32019:20;32015:1;32004:9;32000:17;31993:47;32057:131;32183:4;32057:131;:::i;:::-;32049:139;;31947:248;;;:::o;32201:419::-;32367:4;32405:2;32394:9;32390:18;32382:26;;32454:9;32448:4;32444:20;32440:1;32429:9;32425:17;32418:47;32482:131;32608:4;32482:131;:::i;:::-;32474:139;;32372:248;;;:::o;32626:222::-;32719:4;32757:2;32746:9;32742:18;32734:26;;32770:71;32838:1;32827:9;32823:17;32814:6;32770:71;:::i;:::-;32724:124;;;;:::o;32854:129::-;32888:6;32915:20;;:::i;:::-;32905:30;;32944:33;32972:4;32964:6;32944:33;:::i;:::-;32895:88;;;:::o;32989:75::-;33022:6;33055:2;33049:9;33039:19;;33029:35;:::o;33070:307::-;33131:4;33221:18;33213:6;33210:30;33207:2;;;33243:18;;:::i;:::-;33207:2;33281:29;33303:6;33281:29;:::i;:::-;33273:37;;33365:4;33359;33355:15;33347:23;;33136:241;;;:::o;33383:308::-;33445:4;33535:18;33527:6;33524:30;33521:2;;;33557:18;;:::i;:::-;33521:2;33595:29;33617:6;33595:29;:::i;:::-;33587:37;;33679:4;33673;33669:15;33661:23;;33450:241;;;:::o;33697:98::-;33748:6;33782:5;33776:12;33766:22;;33755:40;;;:::o;33801:99::-;33853:6;33887:5;33881:12;33871:22;;33860:40;;;:::o;33906:168::-;33989:11;34023:6;34018:3;34011:19;34063:4;34058:3;34054:14;34039:29;;34001:73;;;;:::o;34080:147::-;34181:11;34218:3;34203:18;;34193:34;;;;:::o;34233:169::-;34317:11;34351:6;34346:3;34339:19;34391:4;34386:3;34382:14;34367:29;;34329:73;;;;:::o;34408:148::-;34510:11;34547:3;34532:18;;34522:34;;;;:::o;34562:305::-;34602:3;34621:20;34639:1;34621:20;:::i;:::-;34616:25;;34655:20;34673:1;34655:20;:::i;:::-;34650:25;;34809:1;34741:66;34737:74;34734:1;34731:81;34728:2;;;34815:18;;:::i;:::-;34728:2;34859:1;34856;34852:9;34845:16;;34606:261;;;;:::o;34873:185::-;34913:1;34930:20;34948:1;34930:20;:::i;:::-;34925:25;;34964:20;34982:1;34964:20;:::i;:::-;34959:25;;35003:1;34993:2;;35008:18;;:::i;:::-;34993:2;35050:1;35047;35043:9;35038:14;;34915:143;;;;:::o;35064:348::-;35104:7;35127:20;35145:1;35127:20;:::i;:::-;35122:25;;35161:20;35179:1;35161:20;:::i;:::-;35156:25;;35349:1;35281:66;35277:74;35274:1;35271:81;35266:1;35259:9;35252:17;35248:105;35245:2;;;35356:18;;:::i;:::-;35245:2;35404:1;35401;35397:9;35386:20;;35112:300;;;;:::o;35418:191::-;35458:4;35478:20;35496:1;35478:20;:::i;:::-;35473:25;;35512:20;35530:1;35512:20;:::i;:::-;35507:25;;35551:1;35548;35545:8;35542:2;;;35556:18;;:::i;:::-;35542:2;35601:1;35598;35594:9;35586:17;;35463:146;;;;:::o;35615:96::-;35652:7;35681:24;35699:5;35681:24;:::i;:::-;35670:35;;35660:51;;;:::o;35717:90::-;35751:7;35794:5;35787:13;35780:21;35769:32;;35759:48;;;:::o;35813:77::-;35850:7;35879:5;35868:16;;35858:32;;;:::o;35896:149::-;35932:7;35972:66;35965:5;35961:78;35950:89;;35940:105;;;:::o;36051:126::-;36088:7;36128:42;36121:5;36117:54;36106:65;;36096:81;;;:::o;36183:77::-;36220:7;36249:5;36238:16;;36228:32;;;:::o;36266:86::-;36301:7;36341:4;36334:5;36330:16;36319:27;;36309:43;;;:::o;36358:154::-;36442:6;36437:3;36432;36419:30;36504:1;36495:6;36490:3;36486:16;36479:27;36409:103;;;:::o;36518:307::-;36586:1;36596:113;36610:6;36607:1;36604:13;36596:113;;;36695:1;36690:3;36686:11;36680:18;36676:1;36671:3;36667:11;36660:39;36632:2;36629:1;36625:10;36620:15;;36596:113;;;36727:6;36724:1;36721:13;36718:2;;;36807:1;36798:6;36793:3;36789:16;36782:27;36718:2;36567:258;;;;:::o;36831:320::-;36875:6;36912:1;36906:4;36902:12;36892:22;;36959:1;36953:4;36949:12;36980:18;36970:2;;37036:4;37028:6;37024:17;37014:27;;36970:2;37098;37090:6;37087:14;37067:18;37064:38;37061:2;;;37117:18;;:::i;:::-;37061:2;36882:269;;;;:::o;37157:281::-;37240:27;37262:4;37240:27;:::i;:::-;37232:6;37228:40;37370:6;37358:10;37355:22;37334:18;37322:10;37319:34;37316:62;37313:2;;;37381:18;;:::i;:::-;37313:2;37421:10;37417:2;37410:22;37200:238;;;:::o;37444:233::-;37483:3;37506:24;37524:5;37506:24;:::i;:::-;37497:33;;37552:66;37545:5;37542:77;37539:2;;;37622:18;;:::i;:::-;37539:2;37669:1;37662:5;37658:13;37651:20;;37487:190;;;:::o;37683:79::-;37722:7;37751:5;37740:16;;37730:32;;;:::o;37768:176::-;37800:1;37817:20;37835:1;37817:20;:::i;:::-;37812:25;;37851:20;37869:1;37851:20;:::i;:::-;37846:25;;37890:1;37880:2;;37895:18;;:::i;:::-;37880:2;37936:1;37933;37929:9;37924:14;;37802:142;;;;:::o;37950:180::-;37998:77;37995:1;37988:88;38095:4;38092:1;38085:15;38119:4;38116:1;38109:15;38136:180;38184:77;38181:1;38174:88;38281:4;38278:1;38271:15;38305:4;38302:1;38295:15;38322:180;38370:77;38367:1;38360:88;38467:4;38464:1;38457:15;38491:4;38488:1;38481:15;38508:180;38556:77;38553:1;38546:88;38653:4;38650:1;38643:15;38677:4;38674:1;38667:15;38694:102;38735:6;38786:2;38782:7;38777:2;38770:5;38766:14;38762:28;38752:38;;38742:54;;;:::o;38802:174::-;38942:26;38938:1;38930:6;38926:14;38919:50;38908:68;:::o;38982:181::-;39122:33;39118:1;39110:6;39106:14;39099:57;39088:75;:::o;39169:214::-;39309:66;39305:1;39297:6;39293:14;39286:90;39275:108;:::o;39389:237::-;39529:34;39525:1;39517:6;39513:14;39506:58;39598:20;39593:2;39585:6;39581:15;39574:45;39495:131;:::o;39632:225::-;39772:34;39768:1;39760:6;39756:14;39749:58;39841:8;39836:2;39828:6;39824:15;39817:33;39738:119;:::o;39863:224::-;40003:34;39999:1;39991:6;39987:14;39980:58;40072:7;40067:2;40059:6;40055:15;40048:32;39969:118;:::o;40093:178::-;40233:30;40229:1;40221:6;40217:14;40210:54;40199:72;:::o;40277:223::-;40417:34;40413:1;40405:6;40401:14;40394:58;40486:6;40481:2;40473:6;40469:15;40462:31;40383:117;:::o;40506:175::-;40646:27;40642:1;40634:6;40630:14;40623:51;40612:69;:::o;40687:221::-;40827:34;40823:1;40815:6;40811:14;40804:58;40896:4;40891:2;40883:6;40879:15;40872:29;40793:115;:::o;40914:237::-;41054:34;41050:1;41042:6;41038:14;41031:58;41123:20;41118:2;41110:6;41106:15;41099:45;41020:131;:::o;41157:228::-;41297:34;41293:1;41285:6;41281:14;41274:58;41366:11;41361:2;41353:6;41349:15;41342:36;41263:122;:::o;41391:221::-;41531:34;41527:1;41519:6;41515:14;41508:58;41600:4;41595:2;41587:6;41583:15;41576:29;41497:115;:::o;41618:249::-;41758:34;41754:1;41746:6;41742:14;41735:58;41827:32;41822:2;41814:6;41810:15;41803:57;41724:143;:::o;41873:182::-;42013:34;42009:1;42001:6;41997:14;41990:58;41979:76;:::o;42061:155::-;42201:7;42197:1;42189:6;42185:14;42178:31;42167:49;:::o;42222:182::-;42362:34;42358:1;42350:6;42346:14;42339:58;42328:76;:::o;42410:234::-;42550:34;42546:1;42538:6;42534:14;42527:58;42619:17;42614:2;42606:6;42602:15;42595:42;42516:128;:::o;42650:174::-;42790:26;42786:1;42778:6;42774:14;42767:50;42756:68;:::o;42830:220::-;42970:34;42966:1;42958:6;42954:14;42947:58;43039:3;43034:2;43026:6;43022:15;43015:28;42936:114;:::o;43056:177::-;43196:29;43192:1;43184:6;43180:14;43173:53;43162:71;:::o;43239:114::-;43345:8;:::o;43359:177::-;43499:29;43495:1;43487:6;43483:14;43476:53;43465:71;:::o;43542:165::-;43682:17;43678:1;43670:6;43666:14;43659:41;43648:59;:::o;43713:233::-;43853:34;43849:1;43841:6;43837:14;43830:58;43922:16;43917:2;43909:6;43905:15;43898:41;43819:127;:::o;43952:169::-;44092:21;44088:1;44080:6;44076:14;44069:45;44058:63;:::o;44127:122::-;44200:24;44218:5;44200:24;:::i;:::-;44193:5;44190:35;44180:2;;44239:1;44236;44229:12;44180:2;44170:79;:::o;44255:116::-;44325:21;44340:5;44325:21;:::i;:::-;44318:5;44315:32;44305:2;;44361:1;44358;44351:12;44305:2;44295:76;:::o;44377:122::-;44450:24;44468:5;44450:24;:::i;:::-;44443:5;44440:35;44430:2;;44489:1;44486;44479:12;44430:2;44420:79;:::o;44505:120::-;44577:23;44594:5;44577:23;:::i;:::-;44570:5;44567:34;44557:2;;44615:1;44612;44605:12;44557:2;44547:78;:::o;44631:122::-;44704:24;44722:5;44704:24;:::i;:::-;44697:5;44694:35;44684:2;;44743:1;44740;44733:12;44684:2;44674:79;:::o
Swarm Source
ipfs://5c4ecd18e75b757c4e398e65d5bb55f7dc79b97b4f6b32417427bbf71d820029
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.