Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 345 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14216407 | 1000 days ago | IN | 0 ETH | 0.00233556 | ||||
Set Approval For... | 14213548 | 1001 days ago | IN | 0 ETH | 0.00492862 | ||||
Set Approval For... | 14209654 | 1001 days ago | IN | 0 ETH | 0.00168858 | ||||
Set Approval For... | 13255566 | 1150 days ago | IN | 0 ETH | 0.00199941 | ||||
Set Approval For... | 13224378 | 1155 days ago | IN | 0 ETH | 0.00275749 | ||||
Set Approval For... | 13209901 | 1157 days ago | IN | 0 ETH | 0.00172391 | ||||
Set Approval For... | 13209901 | 1157 days ago | IN | 0 ETH | 0.00300175 | ||||
Set Approval For... | 13188556 | 1160 days ago | IN | 0 ETH | 0.00678017 | ||||
Set Approval For... | 13182394 | 1161 days ago | IN | 0 ETH | 0.00745001 | ||||
Withdraw | 13172594 | 1163 days ago | IN | 0 ETH | 0.00497105 | ||||
Set Approval For... | 13170666 | 1163 days ago | IN | 0 ETH | 0.00340989 | ||||
Claim | 13166358 | 1164 days ago | IN | 0.01 ETH | 0.01129236 | ||||
Set Approval For... | 13166309 | 1164 days ago | IN | 0 ETH | 0.0040295 | ||||
Claim | 13166135 | 1164 days ago | IN | 0.01 ETH | 0.01173425 | ||||
Set Approval For... | 13166105 | 1164 days ago | IN | 0 ETH | 0.00398337 | ||||
Claim | 13166084 | 1164 days ago | IN | 0.01 ETH | 0.0130128 | ||||
Claim | 13165920 | 1164 days ago | IN | 0.01 ETH | 0.01060697 | ||||
Set Approval For... | 13165488 | 1164 days ago | IN | 0 ETH | 0.00322554 | ||||
Claim | 13165460 | 1164 days ago | IN | 0.01 ETH | 0.0105219 | ||||
Claim | 13165460 | 1164 days ago | IN | 0.01 ETH | 0.0105219 | ||||
Claim | 13165460 | 1164 days ago | IN | 0.01 ETH | 0.01033928 | ||||
Claim | 13165459 | 1164 days ago | IN | 0.01 ETH | 0.01170112 | ||||
Claim | 13165436 | 1164 days ago | IN | 0.01 ETH | 0.01155614 | ||||
Claim | 13165436 | 1164 days ago | IN | 0.01 ETH | 0.01135557 | ||||
Claim | 13165433 | 1164 days ago | IN | 0.01 ETH | 0.01268224 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
13172594 | 1163 days ago | 3.13 ETH |
Loading...
Loading
Contract Name:
ArtLoot
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-04 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @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; } } contract ArtLoot is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 public price = 10000000000000000; // 0.01 ETH uint internal _totalSupply = 0; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string[] private background = [ "#e07a5f", "#3d405b", "#003049", "#d62828", "#5f0f40", "#9a031e", "#e36414", "#540b0e", "#3c096c" ]; string[] private color = [ "Golf Socks", "Rad", "Politique", "Baked", "White Mono", "AM", "Black", "Rose", "Cool", "Luxe-Derived", "White on Cream", "Party Time", "Dark Lifestyle" ]; string[] private density = [ "High AF", "High", "Medium", "Low" ]; string[] private outlined = [ "No", "Yes" ]; string[] private superBlocks = [ "Yes", "No" ]; string[] private turbulence = [ "High", "Med", "Low", "None" ]; string[] private collisionCheck = [ "No Overlap", "Anything Goes", "Relaxed" ]; string[] private luck = [ "Luck 1", "Luck 2", "Luck 3", "Luck 4", "Luck 5", "Luck 6", "Luck 7", "Luck 8", "Luck 9", "Luck 10" ]; string[] private scale = [ "Uniform", "Micro-Uniform", "Medium", "Jumbo XL", "Small", "Jumbo", "Large" ]; string[] private profession = [ "Warrior", "Thief", "Ranger", "Wizard", "Paladin", "Knight", "Necromancer", "Shapeshifter", "Assassin", "Priest", "Warlock", "Berserker", "Hunter" ]; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getColor(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "COLOR", color); } function getBackground(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "BACKGROUND", background); } function getProfession(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "PROFESSION", profession); } function getOutlined(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "OUTLINED", outlined); } function getSuperBlocks(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "SUPERBLOCKS", superBlocks); } function getTurbulence(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "TURBULENCE", turbulence); } function getCollisionCheck(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "COLLISIONCHECK", collisionCheck); } function getDensity(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "DENSITY", density); } function getScale(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Token not found."); return pluck(tokenId, "SCALE", scale); } function pluck( uint256 tokenId, string memory keyPrefix, string[] memory sourceArray ) internal view returns (string memory) { uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId)))); string memory output = sourceArray[rand % sourceArray.length]; return output; } function tokenURI(uint256 tokenId) public view override returns (string memory) { string[17] memory parts; parts[ 0 ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>@keyframes fl1{0%{transform:translate(0,0)}50%{transform:translate(-10px,+3px)}100%{transform:translate(0,0)}}.fl1{animation:fl1 5s infinite}@keyframes fl2{0%{transform:translate(0,0)}50%{transform:translate(+15px,-2px)}100%{transform:translate(0,0)}}.fl2{animation:fl2 5s infinite} .b { fill: white; font-family: sans-serif; font-size: 18px; }</style><rect width="100%" height="100%" fill="'; parts[1] = getBackground(tokenId); parts[2] = '" /><text x="20" y="30" class="b fl1">'; parts[3] = getColor(tokenId); parts[4] = '</text><text x="35" y="60" class="b fl2">Density: '; parts[5] = getDensity(tokenId); parts[6] = '</text><text x="50" y="90" class="b fl1">Outlined: '; parts[7] = getOutlined(tokenId); parts[8] = '</text><text x="65" y="120" class="b fl1">Super Blocks: '; parts[9] = getSuperBlocks(tokenId); parts[10] = '</text><text x="80" y="150" class="b fl2">Turbulence: '; parts[11] = getTurbulence(tokenId); parts[12] = '</text><text x="95" y="180" class="b fl1">'; parts[13] = getCollisionCheck(tokenId); parts[14] = '</text><text x="110" y="210" class="b fl2">'; parts[15] = getScale(tokenId); parts[16] = "</text></svg>"; string memory output = string( abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]) ); output = string( abi.encodePacked( output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16] ) ); string memory json = string(abi.encodePacked('{"name": "ArtLoot #', toString(tokenId), '", "description": "Art Loot Project is randomized adventurer artist generated and stored on chain. Feel free to use Loot in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '",')); string memory json_attr = Base64.encode(bytes(string(abi.encodePacked(json, '"attributes":[{"trait_type": "Color", "value": "',getColor(tokenId), '"},{"trait_type": "Density", "value": "', getDensity(tokenId), '"},{"trait_type": "Outlined", "value": "' ,getOutlined(tokenId) , '"},{"trait_type": "Super Blocks", "value": "', getSuperBlocks(tokenId), '"},{"trait_type": "Turbulence", "value": "', getTurbulence(tokenId) , '"},{"trait_type": "Collision Check", "value": "' , getCollisionCheck(tokenId) , '"},{"trait_type": "Scale", "value": "' , getScale(tokenId) , '"}]}')))); output = string(abi.encodePacked('data:application/json;base64,', json_attr)); return output; } function claim() public payable nonReentrant { require(price == msg.value, "Ether value sent is not correct"); require(totalSupply() + 1 <= 10000, "MaxSupply"); _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); _totalSupply++; } function withdraw() public onlyOwner { payable(0x0d2DcFb901C476AEb9105e38A7b7b451FD109A92).transfer(address(this).balance); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("Art Loot", "ARTL") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBackground","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCollisionCheck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDensity","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOutlined","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getProfession","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getScale","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSuperBlocks","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTurbulence","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600c556000600d556040518061012001604052806040518060400160405280600781526020017f236530376135660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233364343035620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030333034390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236436323832380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233566306634300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233961303331650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236533363431340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233534306230650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2333633039366300000000000000000000000000000000000000000000000000815250815250600f906009620002439291906200124b565b50604051806101a001604052806040518060400160405280600a81526020017f476f6c6620536f636b730000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f526164000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f506f6c697469717565000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f42616b656400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5768697465204d6f6e6f0000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f414d00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426c61636b00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f526f73650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436f6f6c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4c7578652d44657269766564000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f5768697465206f6e20437265616d00000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f50617274792054696d650000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4461726b204c6966657374796c65000000000000000000000000000000000000815250815250601090600d6200055f929190620012b2565b5060405180608001604052806040518060400160405280600781526020017f486967682041460000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f486967680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d656469756d000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4c6f77000000000000000000000000000000000000000000000000000000000081525081525060119060046200066792919062001319565b5060405180604001604052806040518060400160405280600281526020017f4e6f00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f59657300000000000000000000000000000000000000000000000000000000008152508152506012906002620006f992919062001380565b5060405180604001604052806040518060400160405280600381526020017f596573000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f4e6f00000000000000000000000000000000000000000000000000000000000081525081525060139060026200078b92919062001380565b5060405180608001604052806040518060400160405280600481526020017f486967680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4d6564000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4c6f77000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4e6f6e650000000000000000000000000000000000000000000000000000000081525081525060149060046200089392919062001319565b5060405180606001604052806040518060400160405280600a81526020017f4e6f204f7665726c61700000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f416e797468696e6720476f65730000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f52656c6178656400000000000000000000000000000000000000000000000000815250815250601590600362000960929190620013e7565b506040518061014001604052806040518060400160405280600681526020017f4c75636b2031000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2032000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2033000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2034000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2035000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2036000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2037000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2038000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c75636b2039000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4c75636b20313000000000000000000000000000000000000000000000000000815250815250601690600a62000bcb9291906200144e565b506040518060e001604052806040518060400160405280600781526020017f556e69666f726d0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4d6963726f2d556e69666f726d0000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d656469756d000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4a756d626f20584c00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536d616c6c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4a756d626f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c61726765000000000000000000000000000000000000000000000000000000815250815250601790600762000d84929190620014b5565b50604051806101a001604052806040518060400160405280600781526020017f57617272696f720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f546869656600000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f52616e676572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f57697a617264000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f50616c6164696e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b6e69676874000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f4e6563726f6d616e63657200000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f536861706573686966746572000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f417373617373696e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f507269657374000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5761726c6f636b0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4265727365726b6572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f48756e7465720000000000000000000000000000000000000000000000000000815250815250601890600d620010a0929190620012b2565b50348015620010ae57600080fd5b506040518060400160405280600881526020017f417274204c6f6f740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4152544c000000000000000000000000000000000000000000000000000000008152508160009080519060200190620011339291906200151c565b5080600190805190602001906200114c9291906200151c565b5050506001600a81905550620011776200116b6200117d60201b60201c565b6200118560201b60201c565b6200169f565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200129f579160200282015b828111156200129e5782518290805190602001906200128d9291906200151c565b50916020019190600101906200126c565b5b509050620012ae9190620015ad565b5090565b82805482825590600052602060002090810192821562001306579160200282015b8281111562001305578251829080519060200190620012f49291906200151c565b5091602001919060010190620012d3565b5b509050620013159190620015ad565b5090565b8280548282559060005260206000209081019282156200136d579160200282015b828111156200136c5782518290805190602001906200135b9291906200151c565b50916020019190600101906200133a565b5b5090506200137c9190620015ad565b5090565b828054828255906000526020600020908101928215620013d4579160200282015b82811115620013d3578251829080519060200190620013c29291906200151c565b5091602001919060010190620013a1565b5b509050620013e39190620015ad565b5090565b8280548282559060005260206000209081019282156200143b579160200282015b828111156200143a578251829080519060200190620014299291906200151c565b509160200191906001019062001408565b5b5090506200144a9190620015ad565b5090565b828054828255906000526020600020908101928215620014a2579160200282015b82811115620014a1578251829080519060200190620014909291906200151c565b50916020019190600101906200146f565b5b509050620014b19190620015ad565b5090565b82805482825590600052602060002090810192821562001509579160200282015b8281111562001508578251829080519060200190620014f79291906200151c565b5091602001919060010190620014d6565b5b509050620015189190620015ad565b5090565b8280546200152a906200163a565b90600052602060002090601f0160209004810192826200154e57600085556200159a565b82601f106200156957805160ff19168380011785556200159a565b828001600101855582156200159a579182015b82811115620015995782518255916020019190600101906200157c565b5b509050620015a99190620015d5565b5090565b5b80821115620015d15760008181620015c79190620015f4565b50600101620015ae565b5090565b5b80821115620015f0576000816000905550600101620015d6565b5090565b50805462001602906200163a565b6000825580601f1062001616575062001637565b601f016020900490600052602060002090810190620016369190620015d5565b5b50565b600060028204905060018216806200165357607f821691505b602082108114156200166a576200166962001670565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615ce580620016af6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b726444d11610095578063ce5496c011610064578063ce5496c01461070f578063e8d887d31461074c578063e985e9c514610789578063f2fde38b146107c6576101d8565b8063b726444d1461062f578063b88d4fde1461066c578063c232cbe914610695578063c87b56dd146106d2576101d8565b80639bf24fa7116100d15780639bf24fa714610561578063a035b1fe1461059e578063a22cb465146105c9578063b3d26ccc146105f2576101d8565b8063715018a6146104b757806380057b9a146104ce5780638da5cb5b1461050b57806395d89b4114610536576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103c35780636352211e146104005780636a7e37731461043d57806370a082311461047a576101d8565b80632f745c591461033c5780633ccfd60b1461037957806342842e0e146103905780634e71d92d146103b9576101d8565b8063081812fc116101b6578063081812fc14610282578063095ea7b3146102bf57806318160ddd146102e857806323b872dd14610313576101d8565b806301ffc9a7146101dd578063057c7d031461021a57806306fdde0314610257575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190614262565b6107ef565b60405161021191906151f5565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906142b4565b610869565b60405161024e9190615210565b60405180910390f35b34801561026357600080fd5b5061026c6109cb565b6040516102799190615210565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906142b4565b610a5d565b6040516102b6919061518e565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614226565b610ae2565b005b3480156102f457600080fd5b506102fd610bfa565b60405161030a91906154d2565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614120565b610c07565b005b34801561034857600080fd5b50610363600480360381019061035e9190614226565b610c67565b60405161037091906154d2565b60405180910390f35b34801561038557600080fd5b5061038e610d0c565b005b34801561039c57600080fd5b506103b760048036038101906103b29190614120565b610de5565b005b6103c1610e05565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906142b4565b610f3b565b6040516103f791906154d2565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906142b4565b610fd2565b604051610434919061518e565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906142b4565b611084565b6040516104719190615210565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906140bb565b6111e6565b6040516104ae91906154d2565b60405180910390f35b3480156104c357600080fd5b506104cc61129e565b005b3480156104da57600080fd5b506104f560048036038101906104f091906142b4565b611326565b6040516105029190615210565b60405180910390f35b34801561051757600080fd5b50610520611488565b60405161052d919061518e565b60405180910390f35b34801561054257600080fd5b5061054b6114b2565b6040516105589190615210565b60405180910390f35b34801561056d57600080fd5b50610588600480360381019061058391906142b4565b611544565b6040516105959190615210565b60405180910390f35b3480156105aa57600080fd5b506105b36116a6565b6040516105c091906154d2565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906141ea565b6116ac565b005b3480156105fe57600080fd5b50610619600480360381019061061491906142b4565b61182d565b6040516106269190615210565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906142b4565b61198f565b6040516106639190615210565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061416f565b611af1565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906142b4565b611b53565b6040516106c99190615210565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906142b4565b611cb5565b6040516107069190615210565b60405180910390f35b34801561071b57600080fd5b50610736600480360381019061073191906142b4565b6127c4565b6040516107439190615210565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906142b4565b612926565b6040516107809190615210565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906140e4565b612a88565b6040516107bd91906151f5565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906140bb565b612b1c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610862575061086182612c14565b5b9050919050565b606061087482612cf6565b6108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906152d2565b60405180910390fd5b6109c4826040518060400160405280600781526020017f44454e53495459000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156109bb57838290600052602060002001805461092e9061575c565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061575c565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b50505050508152602001906001019061090f565b50505050612d62565b9050919050565b6060600080546109da9061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a069061575c565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b6000610a6882612cf6565b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906153f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aed82610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590615452565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7d612df7565b73ffffffffffffffffffffffffffffffffffffffff161480610bac5750610bab81610ba6612df7565b612a88565b5b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290615372565b60405180910390fd5b610bf58383612dff565b505050565b6000600880549050905090565b610c18610c12612df7565b82612eb8565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90615472565b60405180910390fd5b610c62838383612f96565b505050565b6000610c72836111e6565b8210610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90615252565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d14612df7565b73ffffffffffffffffffffffffffffffffffffffff16610d32611488565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90615412565b60405180910390fd5b730d2dcfb901c476aeb9105e38a7b7b451fd109a9273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610de2573d6000803e3d6000fd5b50565b610e0083838360405180602001604052806000815250611af1565b505050565b6002600a541415610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e42906154b2565b60405180910390fd5b6002600a8190555034600c5414610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90615332565b60405180910390fd5b6127106001610ea4610bfa565b610eae9190615591565b1115610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690615232565b60405180910390fd5b610ef9600e6131f2565b6000610f05600e613208565b9050610f18610f12612df7565b82613216565b600d6000815480929190610f2b9061578e565b9190505550506001600a81905550565b6000610f45610bfa565b8210610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90615492565b60405180910390fd5b60088281548110610fc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906153b2565b60405180910390fd5b80915050919050565b606061108f82612cf6565b6110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906152d2565b60405180910390fd5b6111df826040518060400160405280600a81526020017f50524f46455353494f4e000000000000000000000000000000000000000000008152506018805480602002602001604051908101604052809291908181526020016000905b828210156111d65783829060005260206000200180546111499061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546111759061575c565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050508152602001906001019061112a565b50505050612d62565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90615392565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a6612df7565b73ffffffffffffffffffffffffffffffffffffffff166112c4611488565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190615412565b60405180910390fd5b6113246000613234565b565b606061133182612cf6565b611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906152d2565b60405180910390fd5b611481826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156114785783829060005260206000200180546113eb9061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546114179061575c565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b5050505050815260200190600101906113cc565b50505050612d62565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c19061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546114ed9061575c565b801561153a5780601f1061150f5761010080835404028352916020019161153a565b820191906000526020600020905b81548152906001019060200180831161151d57829003601f168201915b5050505050905090565b606061154f82612cf6565b61158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906152d2565b60405180910390fd5b61169f826040518060400160405280600581526020017f5343414c450000000000000000000000000000000000000000000000000000008152506017805480602002602001604051908101604052809291908181526020016000905b828210156116965783829060005260206000200180546116099061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546116359061575c565b80156116825780601f1061165757610100808354040283529160200191611682565b820191906000526020600020905b81548152906001019060200180831161166557829003601f168201915b5050505050815260200190600101906115ea565b50505050612d62565b9050919050565b600c5481565b6116b4612df7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615312565b60405180910390fd5b806005600061172f612df7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dc612df7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182191906151f5565b60405180910390a35050565b606061183882612cf6565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906152d2565b60405180910390fd5b611988826040518060400160405280600e81526020017f434f4c4c4953494f4e434845434b0000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b8282101561197f5783829060005260206000200180546118f29061575c565b80601f016020809104026020016040519081016040528092919081815260200182805461191e9061575c565b801561196b5780601f106119405761010080835404028352916020019161196b565b820191906000526020600020905b81548152906001019060200180831161194e57829003601f168201915b5050505050815260200190600101906118d3565b50505050612d62565b9050919050565b606061199a82612cf6565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906152d2565b60405180910390fd5b611aea826040518060400160405280600b81526020017f5355504552424c4f434b530000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b82821015611ae1578382906000526020600020018054611a549061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a809061575c565b8015611acd5780601f10611aa257610100808354040283529160200191611acd565b820191906000526020600020905b815481529060010190602001808311611ab057829003601f168201915b505050505081526020019060010190611a35565b50505050612d62565b9050919050565b611b02611afc612df7565b83612eb8565b611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890615472565b60405180910390fd5b611b4d848484846132fa565b50505050565b6060611b5e82612cf6565b611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906152d2565b60405180910390fd5b611cae826040518060400160405280600881526020017f4f55544c494e45440000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015611ca5578382906000526020600020018054611c189061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c449061575c565b8015611c915780601f10611c6657610100808354040283529160200191611c91565b820191906000526020600020905b815481529060010190602001808311611c7457829003601f168201915b505050505081526020019060010190611bf9565b50505050612d62565b9050919050565b6060611cbf613fc2565b6040518061022001604052806101f081526020016159326101f0913981600060118110611d15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d2683612926565b81600160118110611d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060268152602001615bbb6026913981600260118110611dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611dcc83611326565b81600360118110611e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060328152602001615c546032913981600460118110611e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e7283610869565b81600560118110611eac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060338152602001615be16033913981600660118110611f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f1883611b53565b81600760118110611f52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060388152602001615b836038913981600860118110611fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fbe8361198f565b81600960118110611ff8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060368152602001615b226036913981600a60118110612053577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612064836127c4565b81600b6011811061209e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602a8152602001615c86602a913981600c601181106120f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061210a8361182d565b81600d60118110612144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602b8152602001615b58602b913981600e6011811061219f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506121b083611544565b81600f601181106121ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601060118110612262577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000601181106122a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001601181106122e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260118110612324577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360118110612363577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004601181106123a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151866005601181106123e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660118110612420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518860076011811061245f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518960086011811061249e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016124bb99989796959493929190614fde565b60405160208183030381529060405290508082600960118110612507577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a60118110612546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b60118110612585577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c601181106125c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60118110612603577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e60118110612642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f60118110612681577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896010601181106126c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016126dd99989796959493929190614fde565b604051602081830303815290604052905060006126f985613356565b61270283613503565b604051602001612713929190615127565b604051602081830303815290604052905060006127948261273388611326565b61273c89610869565b6127458a611b53565b61274e8b61198f565b6127578c6127c4565b6127608d61182d565b6127698e611544565b60405160200161278098979695949392919061505d565b604051602081830303815290604052613503565b9050806040516020016127a7919061516c565b604051602081830303815290604052925082945050505050919050565b60606127cf82612cf6565b61280e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612805906152d2565b60405180910390fd5b61291f826040518060400160405280600a81526020017f54555242554c454e4345000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b828210156129165783829060005260206000200180546128899061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546128b59061575c565b80156129025780601f106128d757610100808354040283529160200191612902565b820191906000526020600020905b8154815290600101906020018083116128e557829003601f168201915b50505050508152602001906001019061286a565b50505050612d62565b9050919050565b606061293182612cf6565b612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612967906152d2565b60405180910390fd5b612a81826040518060400160405280600a81526020017f4241434b47524f554e4400000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b82821015612a785783829060005260206000200180546129eb9061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054612a179061575c565b8015612a645780601f10612a3957610100808354040283529160200191612a64565b820191906000526020600020905b815481529060010190602001808311612a4757829003601f168201915b5050505050815260200190600101906129cc565b50505050612d62565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b24612df7565b73ffffffffffffffffffffffffffffffffffffffff16612b42611488565b73ffffffffffffffffffffffffffffffffffffffff1614612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90615412565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90615292565b60405180910390fd5b612c1181613234565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cdf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cef5750612cee826136c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000612d9884612d7387613356565b604051602001612d84929190614fba565b60405160208183030381529060405261372b565b9050600083845183612daa91906157d7565b81518110612de1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e7283610fd2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ec382612cf6565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef990615352565b60405180910390fd5b6000612f0d83610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f7c57508373ffffffffffffffffffffffffffffffffffffffff16612f6484610a5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f8d5750612f8c8185612a88565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fb682610fd2565b73ffffffffffffffffffffffffffffffffffffffff161461300c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300390615432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561307c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613073906152f2565b60405180910390fd5b61308783838361375e565b613092600082612dff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e29190615672565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131399190615591565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b613230828260405180602001604052806000815250613872565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613305848484612f96565b613311848484846138cd565b613350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334790615272565b60405180910390fd5b50505050565b6060600082141561339e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134fe565b600082905060005b600082146133d05780806133b99061578e565b915050600a826133c991906155e7565b91506133a6565b60008167ffffffffffffffff811115613412577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134445781602001600182028036833780820191505090505b5090505b600085146134f75760018261345d9190615672565b9150600a8561346c91906157d7565b60306134789190615591565b60f81b8183815181106134b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134f091906155e7565b9450613448565b8093505050505b919050565b6060600082519050600081141561352c57604051806020016040528060008152509150506136bc565b6000600360028361353d9190615591565b61354791906155e7565b60046135539190615618565b905060006020826135649190615591565b67ffffffffffffffff8111156135a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135d55781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615c14604091399050600181016020830160005b868110156136795760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613600565b50600386066001811461369357600281146136a3576136ae565b613d3d60f01b60028303526136ae565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008160405160200161373e9190614fa3565b6040516020818303038152906040528051906020012060001c9050919050565b613769838383613a64565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137ac576137a781613a69565b6137eb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137ea576137e98382613ab2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561382e5761382981613c1f565b61386d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461386c5761386b8282613d62565b5b5b505050565b61387c8383613de1565b61388960008484846138cd565b6138c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bf90615272565b60405180910390fd5b505050565b60006138ee8473ffffffffffffffffffffffffffffffffffffffff16613faf565b15613a57578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613917612df7565b8786866040518563ffffffff1660e01b815260040161393994939291906151a9565b602060405180830381600087803b15801561395357600080fd5b505af192505050801561398457506040513d601f19601f82011682018060405250810190613981919061428b565b60015b613a07573d80600081146139b4576040519150601f19603f3d011682016040523d82523d6000602084013e6139b9565b606091505b506000815114156139ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f690615272565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a5c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613abf846111e6565b613ac99190615672565b9050600060076000848152602001908152602001600020549050818114613bae576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c339190615672565b9050600060096000848152602001908152602001600020549050600060088381548110613c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613cd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d6d836111e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e48906153d2565b60405180910390fd5b613e5a81612cf6565b15613e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e91906152b2565b60405180910390fd5b613ea66000838361375e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ef69190615591565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613fd25790505090565b6000613ffd613ff88461551e565b6154ed565b90508281526020810184848401111561401557600080fd5b61402084828561571a565b509392505050565b600081359050614037816158d5565b92915050565b60008135905061404c816158ec565b92915050565b60008135905061406181615903565b92915050565b60008151905061407681615903565b92915050565b600082601f83011261408d57600080fd5b813561409d848260208601613fea565b91505092915050565b6000813590506140b58161591a565b92915050565b6000602082840312156140cd57600080fd5b60006140db84828501614028565b91505092915050565b600080604083850312156140f757600080fd5b600061410585828601614028565b925050602061411685828601614028565b9150509250929050565b60008060006060848603121561413557600080fd5b600061414386828701614028565b935050602061415486828701614028565b9250506040614165868287016140a6565b9150509250925092565b6000806000806080858703121561418557600080fd5b600061419387828801614028565b94505060206141a487828801614028565b93505060406141b5878288016140a6565b925050606085013567ffffffffffffffff8111156141d257600080fd5b6141de8782880161407c565b91505092959194509250565b600080604083850312156141fd57600080fd5b600061420b85828601614028565b925050602061421c8582860161403d565b9150509250929050565b6000806040838503121561423957600080fd5b600061424785828601614028565b9250506020614258858286016140a6565b9150509250929050565b60006020828403121561427457600080fd5b600061428284828501614052565b91505092915050565b60006020828403121561429d57600080fd5b60006142ab84828501614067565b91505092915050565b6000602082840312156142c657600080fd5b60006142d4848285016140a6565b91505092915050565b6142e6816156a6565b82525050565b6142f5816156b8565b82525050565b60006143068261554e565b6143108185615564565b9350614320818560208601615729565b614329816158c4565b840191505092915050565b600061433f82615559565b6143498185615575565b9350614359818560208601615729565b614362816158c4565b840191505092915050565b600061437882615559565b6143828185615586565b9350614392818560208601615729565b80840191505092915050565b60006143ab602583615586565b91507f227d2c7b2274726169745f74797065223a20225363616c65222c202276616c7560008301527f65223a20220000000000000000000000000000000000000000000000000000006020830152602582019050919050565b6000614411600983615575565b91507f4d6178537570706c7900000000000000000000000000000000000000000000006000830152602082019050919050565b6000614451602b83615575565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144b7603283615575565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061451d602683615575565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614583600283615586565b91507f222c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006145c3601c83615575565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614603602a83615586565b91507f227d2c7b2274726169745f74797065223a202254757262756c656e6365222c2060008301527f2276616c7565223a2022000000000000000000000000000000000000000000006020830152602a82019050919050565b600061466960b483615586565b91507f222c20226465736372697074696f6e223a2022417274204c6f6f742050726f6a60008301527f6563742069732072616e646f6d697a656420616476656e74757265722061727460208301527f6973742067656e65726174656420616e642073746f726564206f6e206368616960408301527f6e2e204665656c206672656520746f20757365204c6f6f7420696e20616e792060608301527f77617920796f752077616e742e222c2022696d616765223a2022646174613a6960808301527f6d6167652f7376672b786d6c3b6261736536342c00000000000000000000000060a083015260b482019050919050565b6000614767601083615575565b91507f546f6b656e206e6f7420666f756e642e000000000000000000000000000000006000830152602082019050919050565b60006147a7602483615575565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061480d601983615575565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061484d601f83615575565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061488d602c83615586565b91507f227d2c7b2274726169745f74797065223a2022537570657220426c6f636b732260008301527f2c202276616c7565223a202200000000000000000000000000000000000000006020830152602c82019050919050565b60006148f3602c83615575565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614959603883615575565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006149bf602a83615575565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a25602983615575565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a8b603083615586565b91507f2261747472696275746573223a5b7b2274726169745f74797065223a2022436f60008301527f6c6f72222c202276616c7565223a2022000000000000000000000000000000006020830152603082019050919050565b6000614af1602083615575565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b31602c83615575565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b97602083615575565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614bd7602983615575565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c3d601383615586565b91507f7b226e616d65223a20224172744c6f6f742023000000000000000000000000006000830152601382019050919050565b6000614c7d602883615586565b91507f227d2c7b2274726169745f74797065223a20224f75746c696e6564222c20227660008301527f616c7565223a20220000000000000000000000000000000000000000000000006020830152602882019050919050565b6000614ce3602183615575565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d49601d83615586565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614d89603183615575565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614def602f83615586565b91507f227d2c7b2274726169745f74797065223a2022436f6c6c6973696f6e2043686560008301527f636b222c202276616c7565223a202200000000000000000000000000000000006020830152602f82019050919050565b6000614e55602c83615575565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ebb602783615586565b91507f227d2c7b2274726169745f74797065223a202244656e73697479222c2022766160008301527f6c7565223a2022000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000614f21601f83615575565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614f61600483615586565b91507f227d5d7d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b614f9d81615710565b82525050565b6000614faf828461436d565b915081905092915050565b6000614fc6828561436d565b9150614fd2828461436d565b91508190509392505050565b6000614fea828c61436d565b9150614ff6828b61436d565b9150615002828a61436d565b915061500e828961436d565b915061501a828861436d565b9150615026828761436d565b9150615032828661436d565b915061503e828561436d565b915061504a828461436d565b91508190509a9950505050505050505050565b6000615069828b61436d565b915061507482614a7e565b9150615080828a61436d565b915061508b82614eae565b9150615097828961436d565b91506150a282614c70565b91506150ae828861436d565b91506150b982614880565b91506150c5828761436d565b91506150d0826145f6565b91506150dc828661436d565b91506150e782614de2565b91506150f3828561436d565b91506150fe8261439e565b915061510a828461436d565b915061511582614f54565b91508190509998505050505050505050565b600061513282614c30565b915061513e828561436d565b91506151498261465c565b9150615155828461436d565b915061516082614576565b91508190509392505050565b600061517782614d3c565b9150615183828461436d565b915081905092915050565b60006020820190506151a360008301846142dd565b92915050565b60006080820190506151be60008301876142dd565b6151cb60208301866142dd565b6151d86040830185614f94565b81810360608301526151ea81846142fb565b905095945050505050565b600060208201905061520a60008301846142ec565b92915050565b6000602082019050818103600083015261522a8184614334565b905092915050565b6000602082019050818103600083015261524b81614404565b9050919050565b6000602082019050818103600083015261526b81614444565b9050919050565b6000602082019050818103600083015261528b816144aa565b9050919050565b600060208201905081810360008301526152ab81614510565b9050919050565b600060208201905081810360008301526152cb816145b6565b9050919050565b600060208201905081810360008301526152eb8161475a565b9050919050565b6000602082019050818103600083015261530b8161479a565b9050919050565b6000602082019050818103600083015261532b81614800565b9050919050565b6000602082019050818103600083015261534b81614840565b9050919050565b6000602082019050818103600083015261536b816148e6565b9050919050565b6000602082019050818103600083015261538b8161494c565b9050919050565b600060208201905081810360008301526153ab816149b2565b9050919050565b600060208201905081810360008301526153cb81614a18565b9050919050565b600060208201905081810360008301526153eb81614ae4565b9050919050565b6000602082019050818103600083015261540b81614b24565b9050919050565b6000602082019050818103600083015261542b81614b8a565b9050919050565b6000602082019050818103600083015261544b81614bca565b9050919050565b6000602082019050818103600083015261546b81614cd6565b9050919050565b6000602082019050818103600083015261548b81614d7c565b9050919050565b600060208201905081810360008301526154ab81614e48565b9050919050565b600060208201905081810360008301526154cb81614f14565b9050919050565b60006020820190506154e76000830184614f94565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561551457615513615895565b5b8060405250919050565b600067ffffffffffffffff82111561553957615538615895565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061559c82615710565b91506155a783615710565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155dc576155db615808565b5b828201905092915050565b60006155f282615710565b91506155fd83615710565b92508261560d5761560c615837565b5b828204905092915050565b600061562382615710565b915061562e83615710565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561566757615666615808565b5b828202905092915050565b600061567d82615710565b915061568883615710565b92508282101561569b5761569a615808565b5b828203905092915050565b60006156b1826156f0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561574757808201518184015260208101905061572c565b83811115615756576000848401525b50505050565b6000600282049050600182168061577457607f821691505b6020821081141561578857615787615866565b5b50919050565b600061579982615710565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157cc576157cb615808565b5b600182019050919050565b60006157e282615710565b91506157ed83615710565b9250826157fd576157fc615837565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6158de816156a6565b81146158e957600080fd5b50565b6158f5816156b8565b811461590057600080fd5b50565b61590c816156c4565b811461591757600080fd5b50565b61592381615710565b811461592e57600080fd5b5056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e406b65796672616d657320666c317b30257b7472616e73666f726d3a7472616e736c61746528302c30297d3530257b7472616e73666f726d3a7472616e736c617465282d313070782c2b337078297d313030257b7472616e73666f726d3a7472616e736c61746528302c30297d7d2e666c317b616e696d6174696f6e3a666c3120357320696e66696e6974657d406b65796672616d657320666c327b30257b7472616e73666f726d3a7472616e736c61746528302c30297d3530257b7472616e73666f726d3a7472616e736c617465282b313570782c2d327078297d313030257b7472616e73666f726d3a7472616e736c61746528302c30297d7d2e666c327b616e696d6174696f6e3a666c3220357320696e66696e6974657d202e62207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073616e732d73657269663b20666f6e742d73697a653a20313870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c2f746578743e3c7465787420783d2238302220793d223135302220636c6173733d226220666c32223e54757262756c656e63653a203c2f746578743e3c7465787420783d223131302220793d223231302220636c6173733d226220666c32223e3c2f746578743e3c7465787420783d2236352220793d223132302220636c6173733d226220666c31223e537570657220426c6f636b733a2022202f3e3c7465787420783d2232302220793d2233302220636c6173733d226220666c31223e3c2f746578743e3c7465787420783d2235302220793d2239302220636c6173733d226220666c31223e4f75746c696e65643a204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2233352220793d2236302220636c6173733d226220666c32223e44656e736974793a203c2f746578743e3c7465787420783d2239352220793d223138302220636c6173733d226220666c31223ea2646970667358221220c029e635dffa0b8e8b7b760a919d5aa0f970d1ea035528eb57ee5b70014e92e264736f6c63430008000033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063b726444d11610095578063ce5496c011610064578063ce5496c01461070f578063e8d887d31461074c578063e985e9c514610789578063f2fde38b146107c6576101d8565b8063b726444d1461062f578063b88d4fde1461066c578063c232cbe914610695578063c87b56dd146106d2576101d8565b80639bf24fa7116100d15780639bf24fa714610561578063a035b1fe1461059e578063a22cb465146105c9578063b3d26ccc146105f2576101d8565b8063715018a6146104b757806380057b9a146104ce5780638da5cb5b1461050b57806395d89b4114610536576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103c35780636352211e146104005780636a7e37731461043d57806370a082311461047a576101d8565b80632f745c591461033c5780633ccfd60b1461037957806342842e0e146103905780634e71d92d146103b9576101d8565b8063081812fc116101b6578063081812fc14610282578063095ea7b3146102bf57806318160ddd146102e857806323b872dd14610313576101d8565b806301ffc9a7146101dd578063057c7d031461021a57806306fdde0314610257575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190614262565b6107ef565b60405161021191906151f5565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906142b4565b610869565b60405161024e9190615210565b60405180910390f35b34801561026357600080fd5b5061026c6109cb565b6040516102799190615210565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906142b4565b610a5d565b6040516102b6919061518e565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614226565b610ae2565b005b3480156102f457600080fd5b506102fd610bfa565b60405161030a91906154d2565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614120565b610c07565b005b34801561034857600080fd5b50610363600480360381019061035e9190614226565b610c67565b60405161037091906154d2565b60405180910390f35b34801561038557600080fd5b5061038e610d0c565b005b34801561039c57600080fd5b506103b760048036038101906103b29190614120565b610de5565b005b6103c1610e05565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906142b4565b610f3b565b6040516103f791906154d2565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906142b4565b610fd2565b604051610434919061518e565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906142b4565b611084565b6040516104719190615210565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906140bb565b6111e6565b6040516104ae91906154d2565b60405180910390f35b3480156104c357600080fd5b506104cc61129e565b005b3480156104da57600080fd5b506104f560048036038101906104f091906142b4565b611326565b6040516105029190615210565b60405180910390f35b34801561051757600080fd5b50610520611488565b60405161052d919061518e565b60405180910390f35b34801561054257600080fd5b5061054b6114b2565b6040516105589190615210565b60405180910390f35b34801561056d57600080fd5b50610588600480360381019061058391906142b4565b611544565b6040516105959190615210565b60405180910390f35b3480156105aa57600080fd5b506105b36116a6565b6040516105c091906154d2565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906141ea565b6116ac565b005b3480156105fe57600080fd5b50610619600480360381019061061491906142b4565b61182d565b6040516106269190615210565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906142b4565b61198f565b6040516106639190615210565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061416f565b611af1565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906142b4565b611b53565b6040516106c99190615210565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906142b4565b611cb5565b6040516107069190615210565b60405180910390f35b34801561071b57600080fd5b50610736600480360381019061073191906142b4565b6127c4565b6040516107439190615210565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906142b4565b612926565b6040516107809190615210565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906140e4565b612a88565b6040516107bd91906151f5565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906140bb565b612b1c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610862575061086182612c14565b5b9050919050565b606061087482612cf6565b6108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906152d2565b60405180910390fd5b6109c4826040518060400160405280600781526020017f44454e53495459000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156109bb57838290600052602060002001805461092e9061575c565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061575c565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b50505050508152602001906001019061090f565b50505050612d62565b9050919050565b6060600080546109da9061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a069061575c565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b6000610a6882612cf6565b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906153f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aed82610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590615452565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7d612df7565b73ffffffffffffffffffffffffffffffffffffffff161480610bac5750610bab81610ba6612df7565b612a88565b5b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290615372565b60405180910390fd5b610bf58383612dff565b505050565b6000600880549050905090565b610c18610c12612df7565b82612eb8565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90615472565b60405180910390fd5b610c62838383612f96565b505050565b6000610c72836111e6565b8210610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90615252565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d14612df7565b73ffffffffffffffffffffffffffffffffffffffff16610d32611488565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90615412565b60405180910390fd5b730d2dcfb901c476aeb9105e38a7b7b451fd109a9273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610de2573d6000803e3d6000fd5b50565b610e0083838360405180602001604052806000815250611af1565b505050565b6002600a541415610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e42906154b2565b60405180910390fd5b6002600a8190555034600c5414610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90615332565b60405180910390fd5b6127106001610ea4610bfa565b610eae9190615591565b1115610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690615232565b60405180910390fd5b610ef9600e6131f2565b6000610f05600e613208565b9050610f18610f12612df7565b82613216565b600d6000815480929190610f2b9061578e565b9190505550506001600a81905550565b6000610f45610bfa565b8210610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90615492565b60405180910390fd5b60088281548110610fc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906153b2565b60405180910390fd5b80915050919050565b606061108f82612cf6565b6110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906152d2565b60405180910390fd5b6111df826040518060400160405280600a81526020017f50524f46455353494f4e000000000000000000000000000000000000000000008152506018805480602002602001604051908101604052809291908181526020016000905b828210156111d65783829060005260206000200180546111499061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546111759061575c565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050508152602001906001019061112a565b50505050612d62565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90615392565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a6612df7565b73ffffffffffffffffffffffffffffffffffffffff166112c4611488565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190615412565b60405180910390fd5b6113246000613234565b565b606061133182612cf6565b611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906152d2565b60405180910390fd5b611481826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156114785783829060005260206000200180546113eb9061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546114179061575c565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b5050505050815260200190600101906113cc565b50505050612d62565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c19061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546114ed9061575c565b801561153a5780601f1061150f5761010080835404028352916020019161153a565b820191906000526020600020905b81548152906001019060200180831161151d57829003601f168201915b5050505050905090565b606061154f82612cf6565b61158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906152d2565b60405180910390fd5b61169f826040518060400160405280600581526020017f5343414c450000000000000000000000000000000000000000000000000000008152506017805480602002602001604051908101604052809291908181526020016000905b828210156116965783829060005260206000200180546116099061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546116359061575c565b80156116825780601f1061165757610100808354040283529160200191611682565b820191906000526020600020905b81548152906001019060200180831161166557829003601f168201915b5050505050815260200190600101906115ea565b50505050612d62565b9050919050565b600c5481565b6116b4612df7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615312565b60405180910390fd5b806005600061172f612df7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dc612df7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182191906151f5565b60405180910390a35050565b606061183882612cf6565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906152d2565b60405180910390fd5b611988826040518060400160405280600e81526020017f434f4c4c4953494f4e434845434b0000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b8282101561197f5783829060005260206000200180546118f29061575c565b80601f016020809104026020016040519081016040528092919081815260200182805461191e9061575c565b801561196b5780601f106119405761010080835404028352916020019161196b565b820191906000526020600020905b81548152906001019060200180831161194e57829003601f168201915b5050505050815260200190600101906118d3565b50505050612d62565b9050919050565b606061199a82612cf6565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906152d2565b60405180910390fd5b611aea826040518060400160405280600b81526020017f5355504552424c4f434b530000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b82821015611ae1578382906000526020600020018054611a549061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a809061575c565b8015611acd5780601f10611aa257610100808354040283529160200191611acd565b820191906000526020600020905b815481529060010190602001808311611ab057829003601f168201915b505050505081526020019060010190611a35565b50505050612d62565b9050919050565b611b02611afc612df7565b83612eb8565b611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890615472565b60405180910390fd5b611b4d848484846132fa565b50505050565b6060611b5e82612cf6565b611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906152d2565b60405180910390fd5b611cae826040518060400160405280600881526020017f4f55544c494e45440000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015611ca5578382906000526020600020018054611c189061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c449061575c565b8015611c915780601f10611c6657610100808354040283529160200191611c91565b820191906000526020600020905b815481529060010190602001808311611c7457829003601f168201915b505050505081526020019060010190611bf9565b50505050612d62565b9050919050565b6060611cbf613fc2565b6040518061022001604052806101f081526020016159326101f0913981600060118110611d15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d2683612926565b81600160118110611d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060268152602001615bbb6026913981600260118110611dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611dcc83611326565b81600360118110611e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060328152602001615c546032913981600460118110611e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e7283610869565b81600560118110611eac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060338152602001615be16033913981600660118110611f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f1883611b53565b81600760118110611f52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060388152602001615b836038913981600860118110611fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fbe8361198f565b81600960118110611ff8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060368152602001615b226036913981600a60118110612053577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612064836127c4565b81600b6011811061209e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602a8152602001615c86602a913981600c601181106120f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061210a8361182d565b81600d60118110612144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602b8152602001615b58602b913981600e6011811061219f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506121b083611544565b81600f601181106121ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601060118110612262577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000601181106122a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001601181106122e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260118110612324577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360118110612363577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004601181106123a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151866005601181106123e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660118110612420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518860076011811061245f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518960086011811061249e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016124bb99989796959493929190614fde565b60405160208183030381529060405290508082600960118110612507577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a60118110612546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b60118110612585577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c601181106125c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60118110612603577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e60118110612642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f60118110612681577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896010601181106126c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016126dd99989796959493929190614fde565b604051602081830303815290604052905060006126f985613356565b61270283613503565b604051602001612713929190615127565b604051602081830303815290604052905060006127948261273388611326565b61273c89610869565b6127458a611b53565b61274e8b61198f565b6127578c6127c4565b6127608d61182d565b6127698e611544565b60405160200161278098979695949392919061505d565b604051602081830303815290604052613503565b9050806040516020016127a7919061516c565b604051602081830303815290604052925082945050505050919050565b60606127cf82612cf6565b61280e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612805906152d2565b60405180910390fd5b61291f826040518060400160405280600a81526020017f54555242554c454e4345000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b828210156129165783829060005260206000200180546128899061575c565b80601f01602080910402602001604051908101604052809291908181526020018280546128b59061575c565b80156129025780601f106128d757610100808354040283529160200191612902565b820191906000526020600020905b8154815290600101906020018083116128e557829003601f168201915b50505050508152602001906001019061286a565b50505050612d62565b9050919050565b606061293182612cf6565b612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612967906152d2565b60405180910390fd5b612a81826040518060400160405280600a81526020017f4241434b47524f554e4400000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b82821015612a785783829060005260206000200180546129eb9061575c565b80601f0160208091040260200160405190810160405280929190818152602001828054612a179061575c565b8015612a645780601f10612a3957610100808354040283529160200191612a64565b820191906000526020600020905b815481529060010190602001808311612a4757829003601f168201915b5050505050815260200190600101906129cc565b50505050612d62565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b24612df7565b73ffffffffffffffffffffffffffffffffffffffff16612b42611488565b73ffffffffffffffffffffffffffffffffffffffff1614612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90615412565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90615292565b60405180910390fd5b612c1181613234565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cdf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cef5750612cee826136c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000612d9884612d7387613356565b604051602001612d84929190614fba565b60405160208183030381529060405261372b565b9050600083845183612daa91906157d7565b81518110612de1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e7283610fd2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ec382612cf6565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef990615352565b60405180910390fd5b6000612f0d83610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f7c57508373ffffffffffffffffffffffffffffffffffffffff16612f6484610a5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f8d5750612f8c8185612a88565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fb682610fd2565b73ffffffffffffffffffffffffffffffffffffffff161461300c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300390615432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561307c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613073906152f2565b60405180910390fd5b61308783838361375e565b613092600082612dff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e29190615672565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131399190615591565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b613230828260405180602001604052806000815250613872565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613305848484612f96565b613311848484846138cd565b613350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334790615272565b60405180910390fd5b50505050565b6060600082141561339e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134fe565b600082905060005b600082146133d05780806133b99061578e565b915050600a826133c991906155e7565b91506133a6565b60008167ffffffffffffffff811115613412577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134445781602001600182028036833780820191505090505b5090505b600085146134f75760018261345d9190615672565b9150600a8561346c91906157d7565b60306134789190615591565b60f81b8183815181106134b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134f091906155e7565b9450613448565b8093505050505b919050565b6060600082519050600081141561352c57604051806020016040528060008152509150506136bc565b6000600360028361353d9190615591565b61354791906155e7565b60046135539190615618565b905060006020826135649190615591565b67ffffffffffffffff8111156135a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135d55781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615c14604091399050600181016020830160005b868110156136795760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613600565b50600386066001811461369357600281146136a3576136ae565b613d3d60f01b60028303526136ae565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008160405160200161373e9190614fa3565b6040516020818303038152906040528051906020012060001c9050919050565b613769838383613a64565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137ac576137a781613a69565b6137eb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137ea576137e98382613ab2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561382e5761382981613c1f565b61386d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461386c5761386b8282613d62565b5b5b505050565b61387c8383613de1565b61388960008484846138cd565b6138c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bf90615272565b60405180910390fd5b505050565b60006138ee8473ffffffffffffffffffffffffffffffffffffffff16613faf565b15613a57578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613917612df7565b8786866040518563ffffffff1660e01b815260040161393994939291906151a9565b602060405180830381600087803b15801561395357600080fd5b505af192505050801561398457506040513d601f19601f82011682018060405250810190613981919061428b565b60015b613a07573d80600081146139b4576040519150601f19603f3d011682016040523d82523d6000602084013e6139b9565b606091505b506000815114156139ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f690615272565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a5c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613abf846111e6565b613ac99190615672565b9050600060076000848152602001908152602001600020549050818114613bae576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c339190615672565b9050600060096000848152602001908152602001600020549050600060088381548110613c89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613cd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d6d836111e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e48906153d2565b60405180910390fd5b613e5a81612cf6565b15613e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e91906152b2565b60405180910390fd5b613ea66000838361375e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ef69190615591565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613fd25790505090565b6000613ffd613ff88461551e565b6154ed565b90508281526020810184848401111561401557600080fd5b61402084828561571a565b509392505050565b600081359050614037816158d5565b92915050565b60008135905061404c816158ec565b92915050565b60008135905061406181615903565b92915050565b60008151905061407681615903565b92915050565b600082601f83011261408d57600080fd5b813561409d848260208601613fea565b91505092915050565b6000813590506140b58161591a565b92915050565b6000602082840312156140cd57600080fd5b60006140db84828501614028565b91505092915050565b600080604083850312156140f757600080fd5b600061410585828601614028565b925050602061411685828601614028565b9150509250929050565b60008060006060848603121561413557600080fd5b600061414386828701614028565b935050602061415486828701614028565b9250506040614165868287016140a6565b9150509250925092565b6000806000806080858703121561418557600080fd5b600061419387828801614028565b94505060206141a487828801614028565b93505060406141b5878288016140a6565b925050606085013567ffffffffffffffff8111156141d257600080fd5b6141de8782880161407c565b91505092959194509250565b600080604083850312156141fd57600080fd5b600061420b85828601614028565b925050602061421c8582860161403d565b9150509250929050565b6000806040838503121561423957600080fd5b600061424785828601614028565b9250506020614258858286016140a6565b9150509250929050565b60006020828403121561427457600080fd5b600061428284828501614052565b91505092915050565b60006020828403121561429d57600080fd5b60006142ab84828501614067565b91505092915050565b6000602082840312156142c657600080fd5b60006142d4848285016140a6565b91505092915050565b6142e6816156a6565b82525050565b6142f5816156b8565b82525050565b60006143068261554e565b6143108185615564565b9350614320818560208601615729565b614329816158c4565b840191505092915050565b600061433f82615559565b6143498185615575565b9350614359818560208601615729565b614362816158c4565b840191505092915050565b600061437882615559565b6143828185615586565b9350614392818560208601615729565b80840191505092915050565b60006143ab602583615586565b91507f227d2c7b2274726169745f74797065223a20225363616c65222c202276616c7560008301527f65223a20220000000000000000000000000000000000000000000000000000006020830152602582019050919050565b6000614411600983615575565b91507f4d6178537570706c7900000000000000000000000000000000000000000000006000830152602082019050919050565b6000614451602b83615575565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144b7603283615575565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061451d602683615575565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614583600283615586565b91507f222c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006145c3601c83615575565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614603602a83615586565b91507f227d2c7b2274726169745f74797065223a202254757262756c656e6365222c2060008301527f2276616c7565223a2022000000000000000000000000000000000000000000006020830152602a82019050919050565b600061466960b483615586565b91507f222c20226465736372697074696f6e223a2022417274204c6f6f742050726f6a60008301527f6563742069732072616e646f6d697a656420616476656e74757265722061727460208301527f6973742067656e65726174656420616e642073746f726564206f6e206368616960408301527f6e2e204665656c206672656520746f20757365204c6f6f7420696e20616e792060608301527f77617920796f752077616e742e222c2022696d616765223a2022646174613a6960808301527f6d6167652f7376672b786d6c3b6261736536342c00000000000000000000000060a083015260b482019050919050565b6000614767601083615575565b91507f546f6b656e206e6f7420666f756e642e000000000000000000000000000000006000830152602082019050919050565b60006147a7602483615575565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061480d601983615575565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061484d601f83615575565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061488d602c83615586565b91507f227d2c7b2274726169745f74797065223a2022537570657220426c6f636b732260008301527f2c202276616c7565223a202200000000000000000000000000000000000000006020830152602c82019050919050565b60006148f3602c83615575565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614959603883615575565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006149bf602a83615575565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a25602983615575565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a8b603083615586565b91507f2261747472696275746573223a5b7b2274726169745f74797065223a2022436f60008301527f6c6f72222c202276616c7565223a2022000000000000000000000000000000006020830152603082019050919050565b6000614af1602083615575565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b31602c83615575565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b97602083615575565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614bd7602983615575565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c3d601383615586565b91507f7b226e616d65223a20224172744c6f6f742023000000000000000000000000006000830152601382019050919050565b6000614c7d602883615586565b91507f227d2c7b2274726169745f74797065223a20224f75746c696e6564222c20227660008301527f616c7565223a20220000000000000000000000000000000000000000000000006020830152602882019050919050565b6000614ce3602183615575565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d49601d83615586565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614d89603183615575565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614def602f83615586565b91507f227d2c7b2274726169745f74797065223a2022436f6c6c6973696f6e2043686560008301527f636b222c202276616c7565223a202200000000000000000000000000000000006020830152602f82019050919050565b6000614e55602c83615575565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ebb602783615586565b91507f227d2c7b2274726169745f74797065223a202244656e73697479222c2022766160008301527f6c7565223a2022000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000614f21601f83615575565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614f61600483615586565b91507f227d5d7d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b614f9d81615710565b82525050565b6000614faf828461436d565b915081905092915050565b6000614fc6828561436d565b9150614fd2828461436d565b91508190509392505050565b6000614fea828c61436d565b9150614ff6828b61436d565b9150615002828a61436d565b915061500e828961436d565b915061501a828861436d565b9150615026828761436d565b9150615032828661436d565b915061503e828561436d565b915061504a828461436d565b91508190509a9950505050505050505050565b6000615069828b61436d565b915061507482614a7e565b9150615080828a61436d565b915061508b82614eae565b9150615097828961436d565b91506150a282614c70565b91506150ae828861436d565b91506150b982614880565b91506150c5828761436d565b91506150d0826145f6565b91506150dc828661436d565b91506150e782614de2565b91506150f3828561436d565b91506150fe8261439e565b915061510a828461436d565b915061511582614f54565b91508190509998505050505050505050565b600061513282614c30565b915061513e828561436d565b91506151498261465c565b9150615155828461436d565b915061516082614576565b91508190509392505050565b600061517782614d3c565b9150615183828461436d565b915081905092915050565b60006020820190506151a360008301846142dd565b92915050565b60006080820190506151be60008301876142dd565b6151cb60208301866142dd565b6151d86040830185614f94565b81810360608301526151ea81846142fb565b905095945050505050565b600060208201905061520a60008301846142ec565b92915050565b6000602082019050818103600083015261522a8184614334565b905092915050565b6000602082019050818103600083015261524b81614404565b9050919050565b6000602082019050818103600083015261526b81614444565b9050919050565b6000602082019050818103600083015261528b816144aa565b9050919050565b600060208201905081810360008301526152ab81614510565b9050919050565b600060208201905081810360008301526152cb816145b6565b9050919050565b600060208201905081810360008301526152eb8161475a565b9050919050565b6000602082019050818103600083015261530b8161479a565b9050919050565b6000602082019050818103600083015261532b81614800565b9050919050565b6000602082019050818103600083015261534b81614840565b9050919050565b6000602082019050818103600083015261536b816148e6565b9050919050565b6000602082019050818103600083015261538b8161494c565b9050919050565b600060208201905081810360008301526153ab816149b2565b9050919050565b600060208201905081810360008301526153cb81614a18565b9050919050565b600060208201905081810360008301526153eb81614ae4565b9050919050565b6000602082019050818103600083015261540b81614b24565b9050919050565b6000602082019050818103600083015261542b81614b8a565b9050919050565b6000602082019050818103600083015261544b81614bca565b9050919050565b6000602082019050818103600083015261546b81614cd6565b9050919050565b6000602082019050818103600083015261548b81614d7c565b9050919050565b600060208201905081810360008301526154ab81614e48565b9050919050565b600060208201905081810360008301526154cb81614f14565b9050919050565b60006020820190506154e76000830184614f94565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561551457615513615895565b5b8060405250919050565b600067ffffffffffffffff82111561553957615538615895565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061559c82615710565b91506155a783615710565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155dc576155db615808565b5b828201905092915050565b60006155f282615710565b91506155fd83615710565b92508261560d5761560c615837565b5b828204905092915050565b600061562382615710565b915061562e83615710565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561566757615666615808565b5b828202905092915050565b600061567d82615710565b915061568883615710565b92508282101561569b5761569a615808565b5b828203905092915050565b60006156b1826156f0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561574757808201518184015260208101905061572c565b83811115615756576000848401525b50505050565b6000600282049050600182168061577457607f821691505b6020821081141561578857615787615866565b5b50919050565b600061579982615710565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157cc576157cb615808565b5b600182019050919050565b60006157e282615710565b91506157ed83615710565b9250826157fd576157fc615837565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6158de816156a6565b81146158e957600080fd5b50565b6158f5816156b8565b811461590057600080fd5b50565b61590c816156c4565b811461591757600080fd5b50565b61592381615710565b811461592e57600080fd5b5056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e406b65796672616d657320666c317b30257b7472616e73666f726d3a7472616e736c61746528302c30297d3530257b7472616e73666f726d3a7472616e736c617465282d313070782c2b337078297d313030257b7472616e73666f726d3a7472616e736c61746528302c30297d7d2e666c317b616e696d6174696f6e3a666c3120357320696e66696e6974657d406b65796672616d657320666c327b30257b7472616e73666f726d3a7472616e736c61746528302c30297d3530257b7472616e73666f726d3a7472616e736c617465282b313570782c2d327078297d313030257b7472616e73666f726d3a7472616e736c61746528302c30297d7d2e666c327b616e696d6174696f6e3a666c3220357320696e66696e6974657d202e62207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073616e732d73657269663b20666f6e742d73697a653a20313870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c2f746578743e3c7465787420783d2238302220793d223135302220636c6173733d226220666c32223e54757262756c656e63653a203c2f746578743e3c7465787420783d223131302220793d223231302220636c6173733d226220666c32223e3c2f746578743e3c7465787420783d2236352220793d223132302220636c6173733d226220666c31223e537570657220426c6f636b733a2022202f3e3c7465787420783d2232302220793d2233302220636c6173733d226220666c31223e3c2f746578743e3c7465787420783d2235302220793d2239302220636c6173733d226220666c31223e4f75746c696e65643a204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2233352220793d2236302220636c6173733d226220666c32223e44656e736974793a203c2f746578743e3c7465787420783d2239352220793d223138302220636c6173733d226220666c31223ea2646970667358221220c029e635dffa0b8e8b7b760a919d5aa0f970d1ea035528eb57ee5b70014e92e264736f6c63430008000033
Deployed Bytecode Sourcemap
45702:8808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38230:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49324:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25358:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26917:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26440:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38870:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27807:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38538:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53576:139;;;;;;;;;;;;;:::i;:::-;;28217:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53230:338;;;:::i;:::-;;39060:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25052:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48285:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24782:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9818:94;;;;;;;;;;;;;:::i;:::-;;47884:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9167:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25527:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49521:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45772:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27210:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49106:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48691:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28473:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48491:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50072:3150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48900:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48079;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27576:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10067:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38230:224;38332:4;38371:35;38356:50;;;:11;:50;;;;:90;;;;38410:36;38434:11;38410:23;:36::i;:::-;38356:90;38349:97;;38230:224;;;:::o;49324:189::-;49382:13;49416:16;49424:7;49416;:16::i;:::-;49408:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49471:34;49477:7;49471:34;;;;;;;;;;;;;;;;;49497:7;49471:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:34::i;:::-;49464:41;;49324:189;;;:::o;25358:100::-;25412:13;25445:5;25438:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25358:100;:::o;26917:221::-;26993:7;27021:16;27029:7;27021;:16::i;:::-;27013:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27106:15;:24;27122:7;27106:24;;;;;;;;;;;;;;;;;;;;;27099:31;;26917:221;;;:::o;26440:411::-;26521:13;26537:23;26552:7;26537:14;:23::i;:::-;26521:39;;26585:5;26579:11;;:2;:11;;;;26571:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26679:5;26663:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26688:37;26705:5;26712:12;:10;:12::i;:::-;26688:16;:37::i;:::-;26663:62;26641:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26822:21;26831:2;26835:7;26822:8;:21::i;:::-;26440:411;;;:::o;38870:113::-;38931:7;38958:10;:17;;;;38951:24;;38870:113;:::o;27807:339::-;28002:41;28021:12;:10;:12::i;:::-;28035:7;28002:18;:41::i;:::-;27994:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28110:28;28120:4;28126:2;28130:7;28110:9;:28::i;:::-;27807:339;;;:::o;38538:256::-;38635:7;38671:23;38688:5;38671:16;:23::i;:::-;38663:5;:31;38655:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38760:12;:19;38773:5;38760:19;;;;;;;;;;;;;;;:26;38780:5;38760:26;;;;;;;;;;;;38753:33;;38538:256;;;;:::o;53576:139::-;9398:12;:10;:12::i;:::-;9387:23;;:7;:5;:7::i;:::-;:23;;;9379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53632:42:::1;53624:60;;:83;53685:21;53624:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53576:139::o:0;28217:185::-;28355:39;28372:4;28378:2;28382:7;28355:39;;;;;;;;;;;;:16;:39::i;:::-;28217:185;;;:::o;53230:338::-;12098:1;12694:7;;:19;;12686:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12098:1;12827:7;:18;;;;53303:9:::1;53294:5;;:18;53286:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53388:5;53383:1;53367:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;53359:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53418:21;:9;:19;:21::i;:::-;53451:17;53471:19;:9;:17;:19::i;:::-;53451:39;;53501:34;53511:12;:10;:12::i;:::-;53525:9;53501;:34::i;:::-;53546:12;;:14;;;;;;;;;:::i;:::-;;;;;;12858:1;12054::::0;13006:7;:22;;;;53230:338::o;39060:233::-;39135:7;39171:30;:28;:30::i;:::-;39163:5;:38;39155:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39268:10;39279:5;39268:17;;;;;;;;;;;;;;;;;;;;;;;;39261:24;;39060:233;;;:::o;25052:239::-;25124:7;25144:13;25160:7;:16;25168:7;25160:16;;;;;;;;;;;;;;;;;;;;;25144:32;;25212:1;25195:19;;:5;:19;;;;25187:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25278:5;25271:12;;;25052:239;;;:::o;48285:198::-;48346:13;48380:16;48388:7;48380;:16::i;:::-;48372:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48435:40;48441:7;48435:40;;;;;;;;;;;;;;;;;48464:10;48435:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:40::i;:::-;48428:47;;48285:198;;;:::o;24782:208::-;24854:7;24899:1;24882:19;;:5;:19;;;;24874:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24966:9;:16;24976:5;24966:16;;;;;;;;;;;;;;;;24959:23;;24782:208;;;:::o;9818:94::-;9398:12;:10;:12::i;:::-;9387:23;;:7;:5;:7::i;:::-;:23;;;9379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9883:21:::1;9901:1;9883:9;:21::i;:::-;9818:94::o:0;47884:183::-;47940:13;47974:16;47982:7;47974;:16::i;:::-;47966:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48029:30;48035:7;48029:30;;;;;;;;;;;;;;;;;48053:5;48029:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;48022:37;;47884:183;;;:::o;9167:87::-;9213:7;9240:6;;;;;;;;;;;9233:13;;9167:87;:::o;25527:104::-;25583:13;25616:7;25609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25527:104;:::o;49521:183::-;49577:13;49611:16;49619:7;49611;:16::i;:::-;49603:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49666:30;49672:7;49666:30;;;;;;;;;;;;;;;;;49690:5;49666:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;49659:37;;49521:183;;;:::o;45772:40::-;;;;:::o;27210:295::-;27325:12;:10;:12::i;:::-;27313:24;;:8;:24;;;;27305:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27425:8;27380:18;:32;27399:12;:10;:12::i;:::-;27380:32;;;;;;;;;;;;;;;:42;27413:8;27380:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27478:8;27449:48;;27464:12;:10;:12::i;:::-;27449:48;;;27488:8;27449:48;;;;;;:::i;:::-;;;;;;;;27210:295;;:::o;49106:210::-;49171:13;49205:16;49213:7;49205;:16::i;:::-;49197:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49260:48;49266:7;49260:48;;;;;;;;;;;;;;;;;49293:14;49260:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:48::i;:::-;49253:55;;49106:210;;;:::o;48691:201::-;48753:13;48787:16;48795:7;48787;:16::i;:::-;48779:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48842:42;48848:7;48842:42;;;;;;;;;;;;;;;;;48872:11;48842:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:42::i;:::-;48835:49;;48691:201;;;:::o;28473:328::-;28648:41;28667:12;:10;:12::i;:::-;28681:7;28648:18;:41::i;:::-;28640:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28754:39;28768:4;28774:2;28778:7;28787:5;28754:13;:39::i;:::-;28473:328;;;;:::o;48491:192::-;48550:13;48584:16;48592:7;48584;:16::i;:::-;48576:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48639:36;48645:7;48639:36;;;;;;;;;;;;;;;;;48666:8;48639:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:36::i;:::-;48632:43;;48491:192;;;:::o;50072:3150::-;50137:13;50163:23;;:::i;:::-;50197:533;;;;;;;;;;;;;;;;;:5;50217:1;50197:32;;;;;;;;;;;;;;;;;;:533;;;;50754:22;50768:7;50754:13;:22::i;:::-;50743:5;50749:1;50743:8;;;;;;;;;;;;;;;;;;:33;;;;50797:51;;;;;;;;;;;;;;;;;:5;50803:1;50797:8;;;;;;;;;;;;;;;;;;:51;;;;50872:17;50881:7;50872:8;:17::i;:::-;50861:5;50867:1;50861:8;;;;;;;;;;;;;;;;;;:28;;;;50902:63;;;;;;;;;;;;;;;;;:5;50908:1;50902:8;;;;;;;;;;;;;;;;;;:63;;;;50989:19;51000:7;50989:10;:19::i;:::-;50978:5;50984:1;50978:8;;;;;;;;;;;;;;;;;;:30;;;;51021:64;;;;;;;;;;;;;;;;;:5;51027:1;51021:8;;;;;;;;;;;;;;;;;;:64;;;;51109:20;51121:7;51109:11;:20::i;:::-;51098:5;51104:1;51098:8;;;;;;;;;;;;;;;;;;:31;;;;51142:69;;;;;;;;;;;;;;;;;:5;51148:1;51142:8;;;;;;;;;;;;;;;;;;:69;;;;51235:23;51250:7;51235:14;:23::i;:::-;51224:5;51230:1;51224:8;;;;;;;;;;;;;;;;;;:34;;;;51271:68;;;;;;;;;;;;;;;;;:5;51277:2;51271:9;;;;;;;;;;;;;;;;;;:68;;;;51364:22;51378:7;51364:13;:22::i;:::-;51352:5;51358:2;51352:9;;;;;;;;;;;;;;;;;;:34;;;;51399:56;;;;;;;;;;;;;;;;;:5;51405:2;51399:9;;;;;;;;;;;;;;;;;;:56;;;;51480:26;51498:7;51480:17;:26::i;:::-;51468:5;51474:2;51468:9;;;;;;;;;;;;;;;;;;:38;;;;51519:57;;;;;;;;;;;;;;;;;:5;51525:2;51519:9;;;;;;;;;;;;;;;;;;:57;;;;51601:17;51610:7;51601:8;:17::i;:::-;51589:5;51595:2;51589:9;;;;;;;;;;;;;;;;;;:29;;;;51631:27;;;;;;;;;;;;;;;;;:5;51637:2;51631:9;;;;;;;;;;;;;;;;;;:27;;;;51671:20;51732:5;51738:1;51732:8;;;;;;;;;;;;;;;;;;;51742:5;51748:1;51742:8;;;;;;;;;;;;;;;;;;;51752:5;51758:1;51752:8;;;;;;;;;;;;;;;;;;;51762:5;51768:1;51762:8;;;;;;;;;;;;;;;;;;;51772:5;51778:1;51772:8;;;;;;;;;;;;;;;;;;;51782:5;51788:1;51782:8;;;;;;;;;;;;;;;;;;;51792:5;51798:1;51792:8;;;;;;;;;;;;;;;;;;;51802:5;51808:1;51802:8;;;;;;;;;;;;;;;;;;;51812:5;51818:1;51812:8;;;;;;;;;;;;;;;;;;;51715:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51671:161;;51908:6;51933:5;51939:1;51933:8;;;;;;;;;;;;;;;;;;;51960:5;51966:2;51960:9;;;;;;;;;;;;;;;;;;;51988:5;51994:2;51988:9;;;;;;;;;;;;;;;;;;;52016:5;52022:2;52016:9;;;;;;;;;;;;;;;;;;;52044:5;52050:2;52044:9;;;;;;;;;;;;;;;;;;;52072:5;52078:2;52072:9;;;;;;;;;;;;;;;;;;;52100:5;52106:2;52100:9;;;;;;;;;;;;;;;;;;;52128:5;52134:2;52128:9;;;;;;;;;;;;;;;;;;;51873:279;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51843:320;;52178:18;52246:17;52255:7;52246:8;:17::i;:::-;52449:28;52469:6;52449:13;:28::i;:::-;52206:278;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52178:307;;52506:23;52533:549;52577:4;52634:17;52643:7;52634:8;:17::i;:::-;52696:19;52707:7;52696:10;:19::i;:::-;52761:20;52773:7;52761:11;:20::i;:::-;52833:23;52848:7;52833:14;:23::i;:::-;52904:22;52918:7;52904:13;:22::i;:::-;52981:26;52999:7;52981:17;:26::i;:::-;53052:17;53061:7;53052:8;:17::i;:::-;52560:519;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52533:13;:549::i;:::-;52506:576;;53169:9;53119:60;;;;;;;;:::i;:::-;;;;;;;;;;;;;53103:77;;53208:6;53201:13;;;;;;50072:3150;;;:::o;48900:198::-;48961:13;48995:16;49003:7;48995;:16::i;:::-;48987:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49050:40;49056:7;49050:40;;;;;;;;;;;;;;;;;49079:10;49050:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:40::i;:::-;49043:47;;48900:198;;;:::o;48079:::-;48140:13;48174:16;48182:7;48174;:16::i;:::-;48166:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48229:40;48235:7;48229:40;;;;;;;;;;;;;;;;;48258:10;48229:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:40::i;:::-;48222:47;;48079:198;;;:::o;27576:164::-;27673:4;27697:18;:25;27716:5;27697:25;;;;;;;;;;;;;;;:35;27723:8;27697:35;;;;;;;;;;;;;;;;;;;;;;;;;27690:42;;27576:164;;;;:::o;10067:192::-;9398:12;:10;:12::i;:::-;9387:23;;:7;:5;:7::i;:::-;:23;;;9379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10176:1:::1;10156:22;;:8;:22;;;;10148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10232:19;10242:8;10232:9;:19::i;:::-;10067:192:::0;:::o;24413:305::-;24515:4;24567:25;24552:40;;;:11;:40;;;;:105;;;;24624:33;24609:48;;;:11;:48;;;;24552:105;:158;;;;24674:36;24698:11;24674:23;:36::i;:::-;24552:158;24532:178;;24413:305;;;:::o;30311:127::-;30376:4;30428:1;30400:30;;:7;:16;30408:7;30400:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30393:37;;30311:127;;;:::o;49712:352::-;49855:13;49881:12;49896:62;49927:9;49938:17;49947:7;49938:8;:17::i;:::-;49910:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49896:6;:62::i;:::-;49881:77;;49969:20;49992:11;50011;:18;50004:4;:25;;;;:::i;:::-;49992:38;;;;;;;;;;;;;;;;;;;;;;49969:61;;50050:6;50043:13;;;;49712:352;;;;;:::o;8043:98::-;8096:7;8123:10;8116:17;;8043:98;:::o;34293:174::-;34395:2;34368:15;:24;34384:7;34368:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34451:7;34447:2;34413:46;;34422:23;34437:7;34422:14;:23::i;:::-;34413:46;;;;;;;;;;;;34293:174;;:::o;30605:348::-;30698:4;30723:16;30731:7;30723;:16::i;:::-;30715:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30799:13;30815:23;30830:7;30815:14;:23::i;:::-;30799:39;;30868:5;30857:16;;:7;:16;;;:51;;;;30901:7;30877:31;;:20;30889:7;30877:11;:20::i;:::-;:31;;;30857:51;:87;;;;30912:32;30929:5;30936:7;30912:16;:32::i;:::-;30857:87;30849:96;;;30605:348;;;;:::o;33597:578::-;33756:4;33729:31;;:23;33744:7;33729:14;:23::i;:::-;:31;;;33721:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33839:1;33825:16;;:2;:16;;;;33817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33895:39;33916:4;33922:2;33926:7;33895:20;:39::i;:::-;33999:29;34016:1;34020:7;33999:8;:29::i;:::-;34060:1;34041:9;:15;34051:4;34041:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34089:1;34072:9;:13;34082:2;34072:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34120:2;34101:7;:16;34109:7;34101:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34159:7;34155:2;34140:27;;34149:4;34140:27;;;;;;;;;;;;33597:578;;;:::o;45231:127::-;45338:1;45320:7;:14;;;:19;;;;;;;;;;;45231:127;:::o;45109:114::-;45174:7;45201;:14;;;45194:21;;45109:114;;;:::o;31295:110::-;31371:26;31381:2;31385:7;31371:26;;;;;;;;;;;;:9;:26::i;:::-;31295:110;;:::o;10267:173::-;10323:16;10342:6;;;;;;;;;;;10323:25;;10368:8;10359:6;;:17;;;;;;;;;;;;;;;;;;10423:8;10392:40;;10413:8;10392:40;;;;;;;;;;;;10267:173;;:::o;29683:315::-;29840:28;29850:4;29856:2;29860:7;29840:9;:28::i;:::-;29887:48;29910:4;29916:2;29920:7;29929:5;29887:22;:48::i;:::-;29879:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29683:315;;;;:::o;53723:723::-;53779:13;54009:1;54000:5;:10;53996:53;;;54027:10;;;;;;;;;;;;;;;;;;;;;53996:53;54059:12;54074:5;54059:20;;54090:14;54115:78;54130:1;54122:4;:9;54115:78;;54148:8;;;;;:::i;:::-;;;;54179:2;54171:10;;;;;:::i;:::-;;;54115:78;;;54203:19;54235:6;54225:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54203:39;;54253:154;54269:1;54260:5;:10;54253:154;;54297:1;54287:11;;;;;:::i;:::-;;;54364:2;54356:5;:10;;;;:::i;:::-;54343:2;:24;;;;:::i;:::-;54330:39;;54313:6;54320;54313:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;54393:2;54384:11;;;;;:::i;:::-;;;54253:154;;;54431:6;54417:21;;;;;53723:723;;;;:::o;54861:1607::-;54919:13;54945:11;54959:4;:11;54945:25;;54992:1;54985:3;:8;54981:23;;;54995:9;;;;;;;;;;;;;;;;;54981:23;55056:18;55094:1;55089;55083:3;:7;;;;:::i;:::-;55082:13;;;;:::i;:::-;55077:1;:19;;;;:::i;:::-;55056:40;;55154:19;55199:2;55186:10;:15;;;;:::i;:::-;55176:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55154:48;;55215:18;55236:5;;;;;;;;;;;;;;;;;55215:26;;55305:1;55298:5;55294:13;55350:2;55342:6;55338:15;55401:1;55369:777;55424:3;55421:1;55418:10;55369:777;;;55479:1;55476;55472:9;55467:14;;55537:8;55532:1;55526:4;55522:12;55516:19;55512:34;55617:4;55609:5;55605:2;55601:14;55597:25;55587:8;55583:40;55577:47;55656:3;55653:1;55649:11;55642:18;;55747:4;55738;55730:5;55726:2;55722:14;55718:25;55708:8;55704:40;55698:47;55694:58;55689:3;55685:68;55678:75;;55785:3;55782:1;55778:11;55771:18;;55875:4;55866;55858:5;55855:1;55851:13;55847:24;55837:8;55833:39;55827:46;55823:57;55818:3;55814:67;55807:74;;55913:3;55910:1;55906:11;55899:18;;55995:4;55986;55979:5;55975:16;55965:8;55961:31;55955:38;55951:49;55946:3;55942:59;55935:66;;56035:3;56030;56026:13;56019:20;;56077:3;56066:9;56059:22;56129:1;56118:9;56114:17;56101:30;;55448:698;;55369:777;;;55373:44;56178:1;56173:3;56169:11;56199:1;56194:84;;;;56297:1;56292:82;;;;56162:212;;56194:84;56255:6;56250:3;56246:16;56242:1;56231:9;56227:17;56220:43;56194:84;;56292:82;56353:4;56348:3;56344:14;56340:1;56329:9;56325:17;56318:41;56162:212;;56405:10;56397:6;56390:26;55263:1164;;56453:6;56439:21;;;;;;54861:1607;;;;:::o;23022:157::-;23107:4;23146:25;23131:40;;;:11;:40;;;;23124:47;;23022:157;;;:::o;47738:138::-;47798:7;47860:5;47843:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;47833:34;;;;;;47825:43;;47818:50;;47738:138;;;:::o;39906:589::-;40050:45;40077:4;40083:2;40087:7;40050:26;:45::i;:::-;40128:1;40112:18;;:4;:18;;;40108:187;;;40147:40;40179:7;40147:31;:40::i;:::-;40108:187;;;40217:2;40209:10;;:4;:10;;;40205:90;;40236:47;40269:4;40275:7;40236:32;:47::i;:::-;40205:90;40108:187;40323:1;40309:16;;:2;:16;;;40305:183;;;40342:45;40379:7;40342:36;:45::i;:::-;40305:183;;;40415:4;40409:10;;:2;:10;;;40405:83;;40436:40;40464:2;40468:7;40436:27;:40::i;:::-;40405:83;40305:183;39906:589;;;:::o;31632:321::-;31762:18;31768:2;31772:7;31762:5;:18::i;:::-;31813:54;31844:1;31848:2;31852:7;31861:5;31813:22;:54::i;:::-;31791:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31632:321;;;:::o;35032:803::-;35187:4;35208:15;:2;:13;;;:15::i;:::-;35204:624;;;35260:2;35244:36;;;35281:12;:10;:12::i;:::-;35295:4;35301:7;35310:5;35244:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35240:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35507:1;35490:6;:13;:18;35486:272;;;35533:60;;;;;;;;;;:::i;:::-;;;;;;;;35486:272;35708:6;35702:13;35693:6;35689:2;35685:15;35678:38;35240:533;35377:45;;;35367:55;;;:6;:55;;;;35360:62;;;;;35204:624;35812:4;35805:11;;35032:803;;;;;;;:::o;36407:126::-;;;;:::o;41218:164::-;41322:10;:17;;;;41295:15;:24;41311:7;41295:24;;;;;;;;;;;:44;;;;41350:10;41366:7;41350:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41218:164;:::o;42009:988::-;42275:22;42325:1;42300:22;42317:4;42300:16;:22::i;:::-;:26;;;;:::i;:::-;42275:51;;42337:18;42358:17;:26;42376:7;42358:26;;;;;;;;;;;;42337:47;;42505:14;42491:10;:28;42487:328;;42536:19;42558:12;:18;42571:4;42558:18;;;;;;;;;;;;;;;:34;42577:14;42558:34;;;;;;;;;;;;42536:56;;42642:11;42609:12;:18;42622:4;42609:18;;;;;;;;;;;;;;;:30;42628:10;42609:30;;;;;;;;;;;:44;;;;42759:10;42726:17;:30;42744:11;42726:30;;;;;;;;;;;:43;;;;42487:328;;42911:17;:26;42929:7;42911:26;;;;;;;;;;;42904:33;;;42955:12;:18;42968:4;42955:18;;;;;;;;;;;;;;;:34;42974:14;42955:34;;;;;;;;;;;42948:41;;;42009:988;;;;:::o;43292:1079::-;43545:22;43590:1;43570:10;:17;;;;:21;;;;:::i;:::-;43545:46;;43602:18;43623:15;:24;43639:7;43623:24;;;;;;;;;;;;43602:45;;43974:19;43996:10;44007:14;43996:26;;;;;;;;;;;;;;;;;;;;;;;;43974:48;;44060:11;44035:10;44046;44035:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;44171:10;44140:15;:28;44156:11;44140:28;;;;;;;;;;;:41;;;;44312:15;:24;44328:7;44312:24;;;;;;;;;;;44305:31;;;44347:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43292:1079;;;;:::o;40796:221::-;40881:14;40898:20;40915:2;40898:16;:20::i;:::-;40881:37;;40956:7;40929:12;:16;40942:2;40929:16;;;;;;;;;;;;;;;:24;40946:6;40929:24;;;;;;;;;;;:34;;;;41003:6;40974:17;:26;40992:7;40974:26;;;;;;;;;;;:35;;;;40796:221;;;:::o;32289:382::-;32383:1;32369:16;;:2;:16;;;;32361:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32442:16;32450:7;32442;:16::i;:::-;32441:17;32433:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32504:45;32533:1;32537:2;32541:7;32504:20;:45::i;:::-;32579:1;32562:9;:13;32572:2;32562:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32610:2;32591:7;:16;32599:7;32591:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32655:7;32651:2;32630:33;;32647:1;32630:33;;;;;;;;;;;;32289:382;;:::o;15206:387::-;15266:4;15474:12;15541:7;15529:20;15521:28;;15584:1;15577:4;:8;15570:15;;;15206:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1219:139::-;;1303:6;1290:20;1281:29;;1319:33;1346:5;1319:33;:::i;:::-;1271:87;;;;:::o;1364:262::-;;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1488:1;1485;1478:12;1440:2;1531:1;1556:53;1601:7;1592:6;1581:9;1577:22;1556:53;:::i;:::-;1546:63;;1502:117;1430:196;;;;:::o;1632:407::-;;;1757:2;1745:9;1736:7;1732:23;1728:32;1725:2;;;1773:1;1770;1763:12;1725:2;1816:1;1841:53;1886:7;1877:6;1866:9;1862:22;1841:53;:::i;:::-;1831:63;;1787:117;1943:2;1969:53;2014:7;2005:6;1994:9;1990:22;1969:53;:::i;:::-;1959:63;;1914:118;1715:324;;;;;:::o;2045:552::-;;;;2187:2;2175:9;2166:7;2162:23;2158:32;2155:2;;;2203:1;2200;2193:12;2155:2;2246:1;2271:53;2316:7;2307:6;2296:9;2292:22;2271:53;:::i;:::-;2261:63;;2217:117;2373:2;2399:53;2444:7;2435:6;2424:9;2420:22;2399:53;:::i;:::-;2389:63;;2344:118;2501:2;2527:53;2572:7;2563:6;2552:9;2548:22;2527:53;:::i;:::-;2517:63;;2472:118;2145:452;;;;;:::o;2603:809::-;;;;;2771:3;2759:9;2750:7;2746:23;2742:33;2739:2;;;2788:1;2785;2778:12;2739:2;2831:1;2856:53;2901:7;2892:6;2881:9;2877:22;2856:53;:::i;:::-;2846:63;;2802:117;2958:2;2984:53;3029:7;3020:6;3009:9;3005:22;2984:53;:::i;:::-;2974:63;;2929:118;3086:2;3112:53;3157:7;3148:6;3137:9;3133:22;3112:53;:::i;:::-;3102:63;;3057:118;3242:2;3231:9;3227:18;3214:32;3273:18;3265:6;3262:30;3259:2;;;3305:1;3302;3295:12;3259:2;3333:62;3387:7;3378:6;3367:9;3363:22;3333:62;:::i;:::-;3323:72;;3185:220;2729:683;;;;;;;:::o;3418:401::-;;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3556:1;3553;3546:12;3508:2;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:50;3794:7;3785:6;3774:9;3770:22;3752:50;:::i;:::-;3742:60;;3697:115;3498:321;;;;;:::o;3825:407::-;;;3950:2;3938:9;3929:7;3925:23;3921:32;3918:2;;;3966:1;3963;3956:12;3918:2;4009:1;4034:53;4079:7;4070:6;4059:9;4055:22;4034:53;:::i;:::-;4024:63;;3980:117;4136:2;4162:53;4207:7;4198:6;4187:9;4183:22;4162:53;:::i;:::-;4152:63;;4107:118;3908:324;;;;;:::o;4238:260::-;;4345:2;4333:9;4324:7;4320:23;4316:32;4313:2;;;4361:1;4358;4351:12;4313:2;4404:1;4429:52;4473:7;4464:6;4453:9;4449:22;4429:52;:::i;:::-;4419:62;;4375:116;4303:195;;;;:::o;4504:282::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4638:1;4635;4628:12;4590:2;4681:1;4706:63;4761:7;4752:6;4741:9;4737:22;4706:63;:::i;:::-;4696:73;;4652:127;4580:206;;;;:::o;4792:262::-;;4900:2;4888:9;4879:7;4875:23;4871:32;4868:2;;;4916:1;4913;4906:12;4868:2;4959:1;4984:53;5029:7;5020:6;5009:9;5005:22;4984:53;:::i;:::-;4974:63;;4930:117;4858:196;;;;:::o;5060:118::-;5147:24;5165:5;5147:24;:::i;:::-;5142:3;5135:37;5125:53;;:::o;5184:109::-;5265:21;5280:5;5265:21;:::i;:::-;5260:3;5253:34;5243:50;;:::o;5299:360::-;;5413:38;5445:5;5413:38;:::i;:::-;5467:70;5530:6;5525:3;5467:70;:::i;:::-;5460:77;;5546:52;5591:6;5586:3;5579:4;5572:5;5568:16;5546:52;:::i;:::-;5623:29;5645:6;5623:29;:::i;:::-;5618:3;5614:39;5607:46;;5389:270;;;;;:::o;5665:364::-;;5781:39;5814:5;5781:39;:::i;:::-;5836:71;5900:6;5895:3;5836:71;:::i;:::-;5829:78;;5916:52;5961:6;5956:3;5949:4;5942:5;5938:16;5916:52;:::i;:::-;5993:29;6015:6;5993:29;:::i;:::-;5988:3;5984:39;5977:46;;5757:272;;;;;:::o;6035:377::-;;6169:39;6202:5;6169:39;:::i;:::-;6224:89;6306:6;6301:3;6224:89;:::i;:::-;6217:96;;6322:52;6367:6;6362:3;6355:4;6348:5;6344:16;6322:52;:::i;:::-;6399:6;6394:3;6390:16;6383:23;;6145:267;;;;;:::o;6418:496::-;;6599:85;6681:2;6676:3;6599:85;:::i;:::-;6592:92;;6714:66;6710:1;6705:3;6701:11;6694:87;6812:66;6807:2;6802:3;6798:12;6791:88;6905:2;6900:3;6896:12;6889:19;;6582:332;;;:::o;6920:306::-;;7083:66;7147:1;7142:3;7083:66;:::i;:::-;7076:73;;7179:11;7175:1;7170:3;7166:11;7159:32;7217:2;7212:3;7208:12;7201:19;;7066:160;;;:::o;7232:375::-;;7395:67;7459:2;7454:3;7395:67;:::i;:::-;7388:74;;7492:34;7488:1;7483:3;7479:11;7472:55;7558:13;7553:2;7548:3;7544:12;7537:35;7598:2;7593:3;7589:12;7582:19;;7378:229;;;:::o;7613:382::-;;7776:67;7840:2;7835:3;7776:67;:::i;:::-;7769:74;;7873:34;7869:1;7864:3;7860:11;7853:55;7939:20;7934:2;7929:3;7925:12;7918:42;7986:2;7981:3;7977:12;7970:19;;7759:236;;;:::o;8001:370::-;;8164:67;8228:2;8223:3;8164:67;:::i;:::-;8157:74;;8261:34;8257:1;8252:3;8248:11;8241:55;8327:8;8322:2;8317:3;8313:12;8306:30;8362:2;8357:3;8353:12;8346:19;;8147:224;;;:::o;8377:396::-;;8558:84;8640:1;8635:3;8558:84;:::i;:::-;8551:91;;8672:66;8668:1;8663:3;8659:11;8652:87;8765:1;8760:3;8756:11;8749:18;;8541:232;;;:::o;8779:326::-;;8942:67;9006:2;9001:3;8942:67;:::i;:::-;8935:74;;9039:30;9035:1;9030:3;9026:11;9019:51;9096:2;9091:3;9087:12;9080:19;;8925:180;;;:::o;9111:496::-;;9292:85;9374:2;9369:3;9292:85;:::i;:::-;9285:92;;9407:66;9403:1;9398:3;9394:11;9387:87;9505:66;9500:2;9495:3;9491:12;9484:88;9598:2;9593:3;9589:12;9582:19;;9275:332;;;:::o;9613:752::-;;9794:86;9876:3;9871;9794:86;:::i;:::-;9787:93;;9910:66;9906:1;9901:3;9897:11;9890:87;10008:34;10003:2;9998:3;9994:12;9987:56;10074:34;10069:2;10064:3;10060:12;10053:56;10140:34;10135:2;10130:3;10126:12;10119:56;10207:66;10201:3;10196;10192:13;10185:89;10306:22;10300:3;10295;10291:13;10284:45;10355:3;10350;10346:13;10339:20;;9777:588;;;:::o;10371:314::-;;10534:67;10598:2;10593:3;10534:67;:::i;:::-;10527:74;;10631:18;10627:1;10622:3;10618:11;10611:39;10676:2;10671:3;10667:12;10660:19;;10517:168;;;:::o;10691:368::-;;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10951:34;10947:1;10942:3;10938:11;10931:55;11017:6;11012:2;11007:3;11003:12;10996:28;11050:2;11045:3;11041:12;11034:19;;10837:222;;;:::o;11065:323::-;;11228:67;11292:2;11287:3;11228:67;:::i;:::-;11221:74;;11325:27;11321:1;11316:3;11312:11;11305:48;11379:2;11374:3;11370:12;11363:19;;11211:177;;;:::o;11394:329::-;;11557:67;11621:2;11616:3;11557:67;:::i;:::-;11550:74;;11654:33;11650:1;11645:3;11641:11;11634:54;11714:2;11709:3;11705:12;11698:19;;11540:183;;;:::o;11729:496::-;;11910:85;11992:2;11987:3;11910:85;:::i;:::-;11903:92;;12025:66;12021:1;12016:3;12012:11;12005:87;12123:66;12118:2;12113:3;12109:12;12102:88;12216:2;12211:3;12207:12;12200:19;;11893:332;;;:::o;12231:376::-;;12394:67;12458:2;12453:3;12394:67;:::i;:::-;12387:74;;12491:34;12487:1;12482:3;12478:11;12471:55;12557:14;12552:2;12547:3;12543:12;12536:36;12598:2;12593:3;12589:12;12582:19;;12377:230;;;:::o;12613:388::-;;12776:67;12840:2;12835:3;12776:67;:::i;:::-;12769:74;;12873:34;12869:1;12864:3;12860:11;12853:55;12939:26;12934:2;12929:3;12925:12;12918:48;12992:2;12987:3;12983:12;12976:19;;12759:242;;;:::o;13007:374::-;;13170:67;13234:2;13229:3;13170:67;:::i;:::-;13163:74;;13267:34;13263:1;13258:3;13254:11;13247:55;13333:12;13328:2;13323:3;13319:12;13312:34;13372:2;13367:3;13363:12;13356:19;;13153:228;;;:::o;13387:373::-;;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13647:34;13643:1;13638:3;13634:11;13627:55;13713:11;13708:2;13703:3;13699:12;13692:33;13751:2;13746:3;13742:12;13735:19;;13533:227;;;:::o;13766:496::-;;13947:85;14029:2;14024:3;13947:85;:::i;:::-;13940:92;;14062:66;14058:1;14053:3;14049:11;14042:87;14160:66;14155:2;14150:3;14146:12;14139:88;14253:2;14248:3;14244:12;14237:19;;13930:332;;;:::o;14268:330::-;;14431:67;14495:2;14490:3;14431:67;:::i;:::-;14424:74;;14528:34;14524:1;14519:3;14515:11;14508:55;14589:2;14584:3;14580:12;14573:19;;14414:184;;;:::o;14604:376::-;;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14864:34;14860:1;14855:3;14851:11;14844:55;14930:14;14925:2;14920:3;14916:12;14909:36;14971:2;14966:3;14962:12;14955:19;;14750:230;;;:::o;14986:330::-;;15149:67;15213:2;15208:3;15149:67;:::i;:::-;15142:74;;15246:34;15242:1;15237:3;15233:11;15226:55;15307:2;15302:3;15298:12;15291:19;;15132:184;;;:::o;15322:373::-;;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15582:34;15578:1;15573:3;15569:11;15562:55;15648:11;15643:2;15638:3;15634:12;15627:33;15686:2;15681:3;15677:12;15670:19;;15468:227;;;:::o;15701:398::-;;15882:85;15964:2;15959:3;15882:85;:::i;:::-;15875:92;;15997:66;15993:1;15988:3;15984:11;15977:87;16090:2;16085:3;16081:12;16074:19;;15865:234;;;:::o;16105:496::-;;16286:85;16368:2;16363:3;16286:85;:::i;:::-;16279:92;;16401:66;16397:1;16392:3;16388:11;16381:87;16499:66;16494:2;16489:3;16485:12;16478:88;16592:2;16587:3;16583:12;16576:19;;16269:332;;;:::o;16607:365::-;;16770:67;16834:2;16829:3;16770:67;:::i;:::-;16763:74;;16867:34;16863:1;16858:3;16854:11;16847:55;16933:3;16928:2;16923:3;16919:12;16912:25;16963:2;16958:3;16954:12;16947:19;;16753:219;;;:::o;16978:363::-;;17159:85;17241:2;17236:3;17159:85;:::i;:::-;17152:92;;17274:31;17270:1;17265:3;17261:11;17254:52;17332:2;17327:3;17323:12;17316:19;;17142:199;;;:::o;17347:381::-;;17510:67;17574:2;17569:3;17510:67;:::i;:::-;17503:74;;17607:34;17603:1;17598:3;17594:11;17587:55;17673:19;17668:2;17663:3;17659:12;17652:41;17719:2;17714:3;17710:12;17703:19;;17493:235;;;:::o;17734:496::-;;17915:85;17997:2;17992:3;17915:85;:::i;:::-;17908:92;;18030:66;18026:1;18021:3;18017:11;18010:87;18128:66;18123:2;18118:3;18114:12;18107:88;18221:2;18216:3;18212:12;18205:19;;17898:332;;;:::o;18236:376::-;;18399:67;18463:2;18458:3;18399:67;:::i;:::-;18392:74;;18496:34;18492:1;18487:3;18483:11;18476:55;18562:14;18557:2;18552:3;18548:12;18541:36;18603:2;18598:3;18594:12;18587:19;;18382:230;;;:::o;18618:496::-;;18799:85;18881:2;18876:3;18799:85;:::i;:::-;18792:92;;18914:66;18910:1;18905:3;18901:11;18894:87;19012:66;19007:2;19002:3;18998:12;18991:88;19105:2;19100:3;19096:12;19089:19;;18782:332;;;:::o;19120:329::-;;19283:67;19347:2;19342:3;19283:67;:::i;:::-;19276:74;;19380:33;19376:1;19371:3;19367:11;19360:54;19440:2;19435:3;19431:12;19424:19;;19266:183;;;:::o;19455:396::-;;19636:84;19718:1;19713:3;19636:84;:::i;:::-;19629:91;;19750:66;19746:1;19741:3;19737:11;19730:87;19843:1;19838:3;19834:11;19827:18;;19619:232;;;:::o;19857:118::-;19944:24;19962:5;19944:24;:::i;:::-;19939:3;19932:37;19922:53;;:::o;19981:275::-;;20135:95;20226:3;20217:6;20135:95;:::i;:::-;20128:102;;20247:3;20240:10;;20117:139;;;;:::o;20262:435::-;;20464:95;20555:3;20546:6;20464:95;:::i;:::-;20457:102;;20576:95;20667:3;20658:6;20576:95;:::i;:::-;20569:102;;20688:3;20681:10;;20446:251;;;;;:::o;20703:1555::-;;21241:95;21332:3;21323:6;21241:95;:::i;:::-;21234:102;;21353:95;21444:3;21435:6;21353:95;:::i;:::-;21346:102;;21465:95;21556:3;21547:6;21465:95;:::i;:::-;21458:102;;21577:95;21668:3;21659:6;21577:95;:::i;:::-;21570:102;;21689:95;21780:3;21771:6;21689:95;:::i;:::-;21682:102;;21801:95;21892:3;21883:6;21801:95;:::i;:::-;21794:102;;21913:95;22004:3;21995:6;21913:95;:::i;:::-;21906:102;;22025:95;22116:3;22107:6;22025:95;:::i;:::-;22018:102;;22137:95;22228:3;22219:6;22137:95;:::i;:::-;22130:102;;22249:3;22242:10;;21223:1035;;;;;;;;;;;;:::o;22264:3523::-;;23562:95;23653:3;23644:6;23562:95;:::i;:::-;23555:102;;23674:148;23818:3;23674:148;:::i;:::-;23667:155;;23839:95;23930:3;23921:6;23839:95;:::i;:::-;23832:102;;23951:148;24095:3;23951:148;:::i;:::-;23944:155;;24116:95;24207:3;24198:6;24116:95;:::i;:::-;24109:102;;24228:148;24372:3;24228:148;:::i;:::-;24221:155;;24393:95;24484:3;24475:6;24393:95;:::i;:::-;24386:102;;24505:148;24649:3;24505:148;:::i;:::-;24498:155;;24670:95;24761:3;24752:6;24670:95;:::i;:::-;24663:102;;24782:148;24926:3;24782:148;:::i;:::-;24775:155;;24947:95;25038:3;25029:6;24947:95;:::i;:::-;24940:102;;25059:148;25203:3;25059:148;:::i;:::-;25052:155;;25224:95;25315:3;25306:6;25224:95;:::i;:::-;25217:102;;25336:148;25480:3;25336:148;:::i;:::-;25329:155;;25501:95;25592:3;25583:6;25501:95;:::i;:::-;25494:102;;25613:148;25757:3;25613:148;:::i;:::-;25606:155;;25778:3;25771:10;;23544:2243;;;;;;;;;;;:::o;25793:1233::-;;26298:148;26442:3;26298:148;:::i;:::-;26291:155;;26463:95;26554:3;26545:6;26463:95;:::i;:::-;26456:102;;26575:148;26719:3;26575:148;:::i;:::-;26568:155;;26740:95;26831:3;26822:6;26740:95;:::i;:::-;26733:102;;26852:148;26996:3;26852:148;:::i;:::-;26845:155;;27017:3;27010:10;;26280:746;;;;;:::o;27032:541::-;;27287:148;27431:3;27287:148;:::i;:::-;27280:155;;27452:95;27543:3;27534:6;27452:95;:::i;:::-;27445:102;;27564:3;27557:10;;27269:304;;;;:::o;27579:222::-;;27710:2;27699:9;27695:18;27687:26;;27723:71;27791:1;27780:9;27776:17;27767:6;27723:71;:::i;:::-;27677:124;;;;:::o;27807:640::-;;28040:3;28029:9;28025:19;28017:27;;28054:71;28122:1;28111:9;28107:17;28098:6;28054:71;:::i;:::-;28135:72;28203:2;28192:9;28188:18;28179:6;28135:72;:::i;:::-;28217;28285:2;28274:9;28270:18;28261:6;28217:72;:::i;:::-;28336:9;28330:4;28326:20;28321:2;28310:9;28306:18;28299:48;28364:76;28435:4;28426:6;28364:76;:::i;:::-;28356:84;;28007:440;;;;;;;:::o;28453:210::-;;28578:2;28567:9;28563:18;28555:26;;28591:65;28653:1;28642:9;28638:17;28629:6;28591:65;:::i;:::-;28545:118;;;;:::o;28669:313::-;;28820:2;28809:9;28805:18;28797:26;;28869:9;28863:4;28859:20;28855:1;28844:9;28840:17;28833:47;28897:78;28970:4;28961:6;28897:78;:::i;:::-;28889:86;;28787:195;;;;:::o;28988:419::-;;29192:2;29181:9;29177:18;29169:26;;29241:9;29235:4;29231:20;29227:1;29216:9;29212:17;29205:47;29269:131;29395:4;29269:131;:::i;:::-;29261:139;;29159:248;;;:::o;29413:419::-;;29617:2;29606:9;29602:18;29594:26;;29666:9;29660:4;29656:20;29652:1;29641:9;29637:17;29630:47;29694:131;29820:4;29694:131;:::i;:::-;29686:139;;29584:248;;;:::o;29838:419::-;;30042:2;30031:9;30027:18;30019:26;;30091:9;30085:4;30081:20;30077:1;30066:9;30062:17;30055:47;30119:131;30245:4;30119:131;:::i;:::-;30111:139;;30009:248;;;:::o;30263:419::-;;30467:2;30456:9;30452:18;30444:26;;30516:9;30510:4;30506:20;30502:1;30491:9;30487:17;30480:47;30544:131;30670:4;30544:131;:::i;:::-;30536:139;;30434:248;;;:::o;30688:419::-;;30892:2;30881:9;30877:18;30869:26;;30941:9;30935:4;30931:20;30927:1;30916:9;30912:17;30905:47;30969:131;31095:4;30969:131;:::i;:::-;30961:139;;30859:248;;;:::o;31113:419::-;;31317:2;31306:9;31302:18;31294:26;;31366:9;31360:4;31356:20;31352:1;31341:9;31337:17;31330:47;31394:131;31520:4;31394:131;:::i;:::-;31386:139;;31284:248;;;:::o;31538:419::-;;31742:2;31731:9;31727:18;31719:26;;31791:9;31785:4;31781:20;31777:1;31766:9;31762:17;31755:47;31819:131;31945:4;31819:131;:::i;:::-;31811:139;;31709:248;;;:::o;31963:419::-;;32167:2;32156:9;32152:18;32144:26;;32216:9;32210:4;32206:20;32202:1;32191:9;32187:17;32180:47;32244:131;32370:4;32244:131;:::i;:::-;32236:139;;32134:248;;;:::o;32388:419::-;;32592:2;32581:9;32577:18;32569:26;;32641:9;32635:4;32631:20;32627:1;32616:9;32612:17;32605:47;32669:131;32795:4;32669:131;:::i;:::-;32661:139;;32559:248;;;:::o;32813:419::-;;33017:2;33006:9;33002:18;32994:26;;33066:9;33060:4;33056:20;33052:1;33041:9;33037:17;33030:47;33094:131;33220:4;33094:131;:::i;:::-;33086:139;;32984:248;;;:::o;33238:419::-;;33442:2;33431:9;33427:18;33419:26;;33491:9;33485:4;33481:20;33477:1;33466:9;33462:17;33455:47;33519:131;33645:4;33519:131;:::i;:::-;33511:139;;33409:248;;;:::o;33663:419::-;;33867:2;33856:9;33852:18;33844:26;;33916:9;33910:4;33906:20;33902:1;33891:9;33887:17;33880:47;33944:131;34070:4;33944:131;:::i;:::-;33936:139;;33834:248;;;:::o;34088:419::-;;34292:2;34281:9;34277:18;34269:26;;34341:9;34335:4;34331:20;34327:1;34316:9;34312:17;34305:47;34369:131;34495:4;34369:131;:::i;:::-;34361:139;;34259:248;;;:::o;34513:419::-;;34717:2;34706:9;34702:18;34694:26;;34766:9;34760:4;34756:20;34752:1;34741:9;34737:17;34730:47;34794:131;34920:4;34794:131;:::i;:::-;34786:139;;34684:248;;;:::o;34938:419::-;;35142:2;35131:9;35127:18;35119:26;;35191:9;35185:4;35181:20;35177:1;35166:9;35162:17;35155:47;35219:131;35345:4;35219:131;:::i;:::-;35211:139;;35109:248;;;:::o;35363:419::-;;35567:2;35556:9;35552:18;35544:26;;35616:9;35610:4;35606:20;35602:1;35591:9;35587:17;35580:47;35644:131;35770:4;35644:131;:::i;:::-;35636:139;;35534:248;;;:::o;35788:419::-;;35992:2;35981:9;35977:18;35969:26;;36041:9;36035:4;36031:20;36027:1;36016:9;36012:17;36005:47;36069:131;36195:4;36069:131;:::i;:::-;36061:139;;35959:248;;;:::o;36213:419::-;;36417:2;36406:9;36402:18;36394:26;;36466:9;36460:4;36456:20;36452:1;36441:9;36437:17;36430:47;36494:131;36620:4;36494:131;:::i;:::-;36486:139;;36384:248;;;:::o;36638:419::-;;36842:2;36831:9;36827:18;36819:26;;36891:9;36885:4;36881:20;36877:1;36866:9;36862:17;36855:47;36919:131;37045:4;36919:131;:::i;:::-;36911:139;;36809:248;;;:::o;37063:419::-;;37267:2;37256:9;37252:18;37244:26;;37316:9;37310:4;37306:20;37302:1;37291:9;37287:17;37280:47;37344:131;37470:4;37344:131;:::i;:::-;37336:139;;37234:248;;;:::o;37488:419::-;;37692:2;37681:9;37677:18;37669:26;;37741:9;37735:4;37731:20;37727:1;37716:9;37712:17;37705:47;37769:131;37895:4;37769:131;:::i;:::-;37761:139;;37659:248;;;:::o;37913:222::-;;38044:2;38033:9;38029:18;38021:26;;38057:71;38125:1;38114:9;38110:17;38101:6;38057:71;:::i;:::-;38011:124;;;;:::o;38141:283::-;;38207:2;38201:9;38191:19;;38249:4;38241:6;38237:17;38356:6;38344:10;38341:22;38320:18;38308:10;38305:34;38302:62;38299:2;;;38367:18;;:::i;:::-;38299:2;38407:10;38403:2;38396:22;38181:243;;;;:::o;38430:331::-;;38581:18;38573:6;38570:30;38567:2;;;38603:18;;:::i;:::-;38567:2;38688:4;38684:9;38677:4;38669:6;38665:17;38661:33;38653:41;;38749:4;38743;38739:15;38731:23;;38496:265;;;:::o;38767:98::-;;38852:5;38846:12;38836:22;;38825:40;;;:::o;38871:99::-;;38957:5;38951:12;38941:22;;38930:40;;;:::o;38976:168::-;;39093:6;39088:3;39081:19;39133:4;39128:3;39124:14;39109:29;;39071:73;;;;:::o;39150:169::-;;39268:6;39263:3;39256:19;39308:4;39303:3;39299:14;39284:29;;39246:73;;;;:::o;39325:148::-;;39464:3;39449:18;;39439:34;;;;:::o;39479:305::-;;39538:20;39556:1;39538:20;:::i;:::-;39533:25;;39572:20;39590:1;39572:20;:::i;:::-;39567:25;;39726:1;39658:66;39654:74;39651:1;39648:81;39645:2;;;39732:18;;:::i;:::-;39645:2;39776:1;39773;39769:9;39762:16;;39523:261;;;;:::o;39790:185::-;;39847:20;39865:1;39847:20;:::i;:::-;39842:25;;39881:20;39899:1;39881:20;:::i;:::-;39876:25;;39920:1;39910:2;;39925:18;;:::i;:::-;39910:2;39967:1;39964;39960:9;39955:14;;39832:143;;;;:::o;39981:348::-;;40044:20;40062:1;40044:20;:::i;:::-;40039:25;;40078:20;40096:1;40078:20;:::i;:::-;40073:25;;40266:1;40198:66;40194:74;40191:1;40188:81;40183:1;40176:9;40169:17;40165:105;40162:2;;;40273:18;;:::i;:::-;40162:2;40321:1;40318;40314:9;40303:20;;40029:300;;;;:::o;40335:191::-;;40395:20;40413:1;40395:20;:::i;:::-;40390:25;;40429:20;40447:1;40429:20;:::i;:::-;40424:25;;40468:1;40465;40462:8;40459:2;;;40473:18;;:::i;:::-;40459:2;40518:1;40515;40511:9;40503:17;;40380:146;;;;:::o;40532:96::-;;40598:24;40616:5;40598:24;:::i;:::-;40587:35;;40577:51;;;:::o;40634:90::-;;40711:5;40704:13;40697:21;40686:32;;40676:48;;;:::o;40730:149::-;;40806:66;40799:5;40795:78;40784:89;;40774:105;;;:::o;40885:126::-;;40962:42;40955:5;40951:54;40940:65;;40930:81;;;:::o;41017:77::-;;41083:5;41072:16;;41062:32;;;:::o;41100:154::-;41184:6;41179:3;41174;41161:30;41246:1;41237:6;41232:3;41228:16;41221:27;41151:103;;;:::o;41260:307::-;41328:1;41338:113;41352:6;41349:1;41346:13;41338:113;;;41437:1;41432:3;41428:11;41422:18;41418:1;41413:3;41409:11;41402:39;41374:2;41371:1;41367:10;41362:15;;41338:113;;;41469:6;41466:1;41463:13;41460:2;;;41549:1;41540:6;41535:3;41531:16;41524:27;41460:2;41309:258;;;;:::o;41573:320::-;;41654:1;41648:4;41644:12;41634:22;;41701:1;41695:4;41691:12;41722:18;41712:2;;41778:4;41770:6;41766:17;41756:27;;41712:2;41840;41832:6;41829:14;41809:18;41806:38;41803:2;;;41859:18;;:::i;:::-;41803:2;41624:269;;;;:::o;41899:233::-;;41961:24;41979:5;41961:24;:::i;:::-;41952:33;;42007:66;42000:5;41997:77;41994:2;;;42077:18;;:::i;:::-;41994:2;42124:1;42117:5;42113:13;42106:20;;41942:190;;;:::o;42138:176::-;;42187:20;42205:1;42187:20;:::i;:::-;42182:25;;42221:20;42239:1;42221:20;:::i;:::-;42216:25;;42260:1;42250:2;;42265:18;;:::i;:::-;42250:2;42306:1;42303;42299:9;42294:14;;42172:142;;;;:::o;42320:180::-;42368:77;42365:1;42358:88;42465:4;42462:1;42455:15;42489:4;42486:1;42479:15;42506:180;42554:77;42551:1;42544:88;42651:4;42648:1;42641:15;42675:4;42672:1;42665:15;42692:180;42740:77;42737:1;42730:88;42837:4;42834:1;42827:15;42861:4;42858:1;42851:15;42878:180;42926:77;42923:1;42916:88;43023:4;43020:1;43013:15;43047:4;43044:1;43037:15;43064:102;;43156:2;43152:7;43147:2;43140:5;43136:14;43132:28;43122:38;;43112:54;;;:::o;43172:122::-;43245:24;43263:5;43245:24;:::i;:::-;43238:5;43235:35;43225:2;;43284:1;43281;43274:12;43225:2;43215:79;:::o;43300:116::-;43370:21;43385:5;43370:21;:::i;:::-;43363:5;43360:32;43350:2;;43406:1;43403;43396:12;43350:2;43340:76;:::o;43422:120::-;43494:23;43511:5;43494:23;:::i;:::-;43487:5;43484:34;43474:2;;43532:1;43529;43522:12;43474:2;43464:78;:::o;43548:122::-;43621:24;43639:5;43621:24;:::i;:::-;43614:5;43611:35;43601:2;;43660:1;43657;43650:12;43601:2;43591:79;:::o
Swarm Source
ipfs://c029e635dffa0b8e8b7b760a919d5aa0f970d1ea035528eb57ee5b70014e92e2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.