Multichain Info
Latest 25 from a total of 17,807 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Locked NF ... | 22547099 | 159 days ago | IN | 0 APE | 0.00354814 | ||||
| Claim Locked NF ... | 19992269 | 183 days ago | IN | 0 APE | 0.00289292 | ||||
| Finalize Process... | 19566890 | 193 days ago | IN | 0 APE | 0.00980803 | ||||
| Claim | 19566884 | 193 days ago | IN | 0 APE | 0.00529007 | ||||
| Claim Locked NF ... | 19534951 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19534949 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19534943 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19534933 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19534927 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19534919 | 194 days ago | IN | 0 APE | 0.00307656 | ||||
| Claim Locked NF ... | 19442987 | 196 days ago | IN | 0 APE | 0.00224261 | ||||
| Finalize Process... | 18198272 | 228 days ago | IN | 0 APE | 0.00407694 | ||||
| Finalize Process... | 18198259 | 228 days ago | IN | 0 APE | 0.00413203 | ||||
| Bulk Claim | 18198246 | 228 days ago | IN | 0 APE | 0.00889627 | ||||
| Claim Locked NF ... | 18164459 | 229 days ago | IN | 0 APE | 0.00307658 | ||||
| Claim Locked NF ... | 18164456 | 229 days ago | IN | 0 APE | 0.00248322 | ||||
| Claim Locked NF ... | 18114575 | 230 days ago | IN | 0 APE | 0.00307658 | ||||
| Claim Locked NF ... | 18114509 | 230 days ago | IN | 0 APE | 0.00248299 | ||||
| Claim Locked NF ... | 18114358 | 230 days ago | IN | 0 APE | 0.00213546 | ||||
| Claim Locked NF ... | 18114348 | 230 days ago | IN | 0 APE | 0.00307633 | ||||
| Claim Locked NF ... | 17968337 | 232 days ago | IN | 0 APE | 0.0084206 | ||||
| Claim Locked NF ... | 17968318 | 232 days ago | IN | 0 APE | 0.00258459 | ||||
| Claim Locked NF ... | 17904226 | 233 days ago | IN | 0 APE | 0.00307658 | ||||
| Claim Locked NF ... | 17904214 | 233 days ago | IN | 0 APE | 0.00307658 | ||||
| Claim Locked NF ... | 17904187 | 233 days ago | IN | 0 APE | 0.00307658 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x5251d1a4...f15fC49d0 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-05-13 */ // Sources flattened with hardhat v2.22.19 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC1155/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC1155/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC1155/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ abstract contract ERC1155Receiver is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } } // File @openzeppelin/contracts/token/ERC1155/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.0; /** * Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens. * * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be * stuck. * * @dev _Available since v3.1._ */ contract ERC1155Holder is ERC1155Receiver { function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } } // File @openzeppelin/contracts/security/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File contracts/interfaces/ITrustedNativeVRF.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >= 0.5.0; interface ITrustedNativeVRF { // Admin events event ValidatorAdded(address indexed validator); event ValidatorRemoved(address indexed validator); event ConsumerAdded(address indexed consumer); event ConsumerRemoved(address indexed consumer); // Core events event RandomRequested(uint256 indexed requestId); event RandomFullfilled(uint256 indexed requestId, uint256 random); // Admin functions function owner() external view returns (address); function trustedValidators(address validator) external view returns (bool); function whitelistedConsumers(address consumer) external view returns (bool); function addValidator(address validator) external; function removeValidator(address validator) external; function addConsumer(address consumer) external; function removeConsumer(address consumer) external; function transferOwnership(address newOwner) external; // Core VRF functions function MIN_DIFFICULTY() external view returns (uint256); function expectedFulfillTime() external view returns (uint256); function estimatedHashPower() external view returns (uint256); function difficulty() external view returns (uint256); function nBlockFulfillments(uint256 blockNumber) external view returns (uint256); function latestFulfillmentBlock() external view returns (uint256); function currentRequestId() external view returns (uint256); function latestFulfillId() external view returns (uint256); function randomResults(uint256 requestId) external view returns (uint256); function requestInitializers(uint256 requestId) external view returns (address); function minReward() external view returns (uint256); function rewards(uint256 requestId) external view returns (uint256); function requestRandom(uint256 numRequest) external payable returns (uint256[] memory); function fullfillRandomness(uint256[] memory _requestIds, uint256[] memory _randInputs, bytes[] memory _signatures) external; function getMessageHash(uint256 _requestId, uint256 _randInput) external view returns (bytes32); function convertSignatures(bytes[] memory _signatures) external pure returns (uint256[] memory); } // File contracts/PrimordialOffering.sol // Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.4; /** * @title NFTStakingWithVRF * @dev Contract for staking NFTs with randomized outcomes using TrustedNativeVRF. * Rewards are distributed as ERC1155 tokens based on chance system. */ interface IReward1155 { function mint(uint256 tokenId, address to, uint256 amount) external; } contract PrimordialOffering is Ownable, ReentrancyGuard, ERC721Holder, ERC1155Holder { ITrustedNativeVRF public trustedVRF; // Structs struct PoolReward { uint256 tokenId; // ERC1155 token ID uint256 amount; // Amount to mint uint256 chance; // Chance out of 1000 } struct Pool { uint256 poolId; address[] whitelistedNfts; // List of allowed NFT contracts address rewardContract; // ERC1155 contract with mint function PoolReward[] rewards; // Array of possible rewards uint256 lockPeriod; // Time in seconds uint256 requiredNftAmount; // Number of NFTs required per stake bool active; } struct Stake { uint256[] tokenIds; address nftContract; // Track which NFT contract uint256 timestamp; bool claimed; bool claimPending; // Track if a claim is in progress bool isWon; // Track if stake won a reward uint256 rewardTokenId; } struct VRFRequest { address user; uint256 poolId; uint256 stakeIndex; // Index of the stake group } // Storage mapping(uint256 => Pool) public pools; uint256 public poolCount; mapping(address => mapping(uint256 => Stake[])) public userStakes; mapping(uint256 => VRFRequest) public vrfRequests; uint256[] public requestIds; uint256 public eventEndDate; mapping(address => mapping(uint256 => uint256)) public userStakeScore; mapping(uint256 => uint256) public poolStakeScore; // Events event PoolCreated(uint256 indexed poolId); event NFTStaked( address indexed user, uint256 indexed poolId, uint256 tokenId, address nftContract ); event BatchStaked( address indexed user, uint256 indexed poolId, uint256[] tokenIds, address nftContract, uint256 stakeIndex ); event RewardClaimed( address indexed user, uint256 indexed poolId, uint256 indexed tokenId, uint256 rewardId, uint256 amount ); event NFTLocked( address indexed user, uint256 indexed poolId, uint256 indexed tokenId ); event NFTUnlocked( address indexed user, uint256 indexed poolId, uint256 indexed tokenId ); event EventEndDateSet(uint256 endDate); event StakeScoreUpdated(address user, uint256 poolId, uint256 score); constructor(address _trustedVRF) { trustedVRF = ITrustedNativeVRF(_trustedVRF); } function setPoolStakeScore( uint256 _poolId, uint256 _score ) external onlyOwner { poolStakeScore[_poolId] = _score; } function getUserTotalStakeScore( address _user ) external view returns (uint256) { return userStakeScore[_user][0] + userStakeScore[_user][1] + userStakeScore[_user][2]; } function _updateStakeScore(address _user, uint256 _poolId) internal { userStakeScore[_user][_poolId] += poolStakeScore[_poolId]; emit StakeScoreUpdated(_user, _poolId, poolStakeScore[_poolId]); } /** * @dev Create a new staking pool with whitelisted NFT contracts and rewards */ function createPool( address[] calldata _whitelistedNfts, address _rewardContract, PoolReward[] calldata _rewards, uint256 _lockPeriod, uint256 _requiredNftAmount ) external onlyOwner { require( _whitelistedNfts.length > 0, "Must whitelist at least one NFT contract" ); require(_rewardContract != address(0), "Invalid reward contract"); require(_rewards.length > 0, "Must have at least one reward"); require(_requiredNftAmount > 0, "Required NFT amount must be > 0"); // Check for duplicate NFT contracts for (uint256 i = 0; i < _whitelistedNfts.length; i++) { for (uint256 j = i + 1; j < _whitelistedNfts.length; j++) { require( _whitelistedNfts[i] != _whitelistedNfts[j], "Duplicate NFT contract" ); } } // Validate total chances <= 1000 uint256 totalChances; for (uint256 i = 0; i < _rewards.length; i++) { totalChances += _rewards[i].chance; require(_rewards[i].amount > 0, "Reward amount must be > 0"); } require(totalChances <= 1000, "Total chances must be <= 1000"); uint256 newPoolId = poolCount++; Pool storage pool = pools[newPoolId]; pool.poolId = newPoolId; pool.rewardContract = _rewardContract; pool.lockPeriod = _lockPeriod; pool.requiredNftAmount = _requiredNftAmount; pool.active = true; // Store whitelisted NFTs for (uint256 i = 0; i < _whitelistedNfts.length; i++) { pool.whitelistedNfts.push(_whitelistedNfts[i]); } // Store rewards for (uint256 i = 0; i < _rewards.length; i++) { pool.rewards.push(_rewards[i]); } emit PoolCreated(newPoolId); } /** * @dev Set the event end date */ function setEventEndDate(uint256 _endDate) external onlyOwner { require(_endDate > block.timestamp, "End date must be in future"); eventEndDate = _endDate; emit EventEndDateSet(_endDate); } /** * @dev Stake an NFT in a pool */ function stake( uint256 _poolId, address _nftContract, uint256[] calldata _tokenIds ) external nonReentrant { require(_poolId < poolCount, "Pool does not exist"); Pool storage pool = pools[_poolId]; require(pool.active, "Pool is not active"); // Verify NFT contract is whitelisted bool isWhitelisted = false; for (uint256 i = 0; i < pool.whitelistedNfts.length; i++) { if (pool.whitelistedNfts[i] == _nftContract) { isWhitelisted = true; break; } } require(isWhitelisted, "NFT contract not whitelisted"); // Verify exact required amount of NFTs require( _tokenIds.length == pool.requiredNftAmount, "Must stake exact required NFT amount" ); // Create copy of token IDs array since we can't store calldata array directly uint256[] memory tokenIdsCopy = new uint256[](_tokenIds.length); for (uint256 i = 0; i < _tokenIds.length; i++) { tokenIdsCopy[i] = _tokenIds[i]; } // Create single stake for the group userStakes[msg.sender][_poolId].push( Stake({ tokenIds: tokenIdsCopy, nftContract: _nftContract, timestamp: block.timestamp, claimed: false, claimPending: false, isWon: false, rewardTokenId: 0 }) ); // Get stake index before emitting event uint256 stakeIndex = userStakes[msg.sender][_poolId].length - 1; // Transfer all NFTs to contract and emit individual events for (uint256 i = 0; i < _tokenIds.length; i++) { IERC721(_nftContract).safeTransferFrom( msg.sender, address(this), _tokenIds[i] ); emit NFTStaked(msg.sender, _poolId, _tokenIds[i], _nftContract); } _updateStakeScore(msg.sender, _poolId); // Also emit batch stake event emit BatchStaked( msg.sender, _poolId, _tokenIds, _nftContract, stakeIndex ); } /** * @dev Process VRF request for a staked NFT */ function claim(uint256 _poolId, uint256 _stakeIndex) external nonReentrant { _claim(_poolId, _stakeIndex); } /** * @dev Process multiple VRF requests for staked NFTs at once * @param _poolId The pool ID * @param _stakeIndices Array of stake indices to claim */ function bulkClaim( uint256 _poolId, uint256[] calldata _stakeIndices ) external nonReentrant { for (uint256 i = 0; i < _stakeIndices.length; i++) { _claim(_poolId, _stakeIndices[i]); } } /** * @dev Internal function to process VRF request for a staked NFT */ function _claim(uint256 _poolId, uint256 _stakeIndex) internal { require(_poolId < poolCount, "Pool does not exist"); Pool storage pool = pools[_poolId]; require(pool.active, "Pool is not active"); Stake[] storage stakes = userStakes[msg.sender][_poolId]; // Convert input token index to stake group index uint256 stakeGroupIndex = _stakeIndex / pool.requiredNftAmount; require(stakeGroupIndex < stakes.length, "Invalid stake index"); Stake storage userStake = stakes[stakeGroupIndex]; if (userStake.claimed) { revert("Already claimed"); } if (userStake.claimPending) { revert("Claim already in progress"); } require( block.timestamp >= userStake.timestamp + pool.lockPeriod, "Lock period not ended" ); // Request random number uint256[] memory ids = trustedVRF.requestRandom(1); uint256 requestId = ids[0]; // Store request info vrfRequests[requestId] = VRFRequest({ user: msg.sender, poolId: _poolId, stakeIndex: stakeGroupIndex // Store the stake group index }); // Mark claim as pending userStake.claimPending = true; requestIds.push(requestId); } /** * @dev Finalize reward claiming using VRF result */ function finalizeProcessing(uint256 _maxProcess) external nonReentrant { require(_maxProcess > 0, "Must process at least 1"); uint256 processedCount = 0; while (processedCount < _maxProcess && requestIds.length > 0) { uint256 requestId = requestIds[requestIds.length - 1]; VRFRequest memory request = vrfRequests[requestId]; requestIds.pop(); // Remove request from array // Skip invalid requests if (request.user == address(0)) { continue; } Pool storage pool = pools[request.poolId]; Stake storage userStake = userStakes[request.user][request.poolId][ request.stakeIndex ]; // Skip if stake isn't pending anymore if (!userStake.claimPending) { continue; } // Process VRF result uint256 randomResult = trustedVRF.randomResults(requestId); uint256 chance = randomResult % 1000; uint256 accumulated; bool won = false; // Process rewards for (uint256 i = 0; i < pool.rewards.length; i++) { accumulated += pool.rewards[i].chance; if (chance < accumulated) { // Winner! Mint reward PoolReward memory reward = pool.rewards[i]; IReward1155(pool.rewardContract).mint( reward.tokenId, request.user, reward.amount ); userStake.rewardTokenId = reward.tokenId; // Emit reward claimed and return NFTs for each token in the group for (uint256 j = 0; j < userStake.tokenIds.length; j++) { emit RewardClaimed( request.user, request.poolId, userStake.tokenIds[j], reward.tokenId, reward.amount ); // Transfer NFT back to winner IERC721(userStake.nftContract).safeTransferFrom( address(this), request.user, userStake.tokenIds[j] ); emit NFTUnlocked( request.user, request.poolId, userStake.tokenIds[j] ); } won = true; break; } } if (!won) { // No reward - lock NFTs for (uint256 j = 0; j < userStake.tokenIds.length; j++) { emit NFTLocked( request.user, request.poolId, userStake.tokenIds[j] ); } } // Update stake status - Note that claimed and won are always set regardless of VRF result userStake.claimed = true; userStake.claimPending = false; userStake.isWon = won; // Clean up request and increment counter delete vrfRequests[requestId]; processedCount++; } } /** * @dev Claim locked NFTs after event end date */ function claimLockedNFTs( uint256 _poolId, uint256 _stakeGroupIndex ) external nonReentrant { require(block.timestamp > eventEndDate, "Event not ended"); require(_poolId < poolCount, "Pool does not exist"); Stake[] storage stakes = userStakes[msg.sender][_poolId]; require(_stakeGroupIndex < stakes.length, "Invalid stake index"); // Verify stake status require( !stakes[_stakeGroupIndex].claimPending, "Claim still in progress" ); require( stakes[_stakeGroupIndex].claimed, "Stake not fully processed yet" ); require( !stakes[_stakeGroupIndex].isWon, "Winning stakes are automatically returned" ); Stake storage userStake = stakes[_stakeGroupIndex]; // Transfer all NFTs back to user for (uint256 i = 0; i < userStake.tokenIds.length; i++) { IERC721(userStake.nftContract).safeTransferFrom( address(this), msg.sender, userStake.tokenIds[i] ); emit NFTUnlocked(msg.sender, _poolId, userStake.tokenIds[i]); } // Remove stake by moving last stake to current position if not last if (_stakeGroupIndex < stakes.length - 1) { stakes[_stakeGroupIndex] = stakes[stakes.length - 1]; } stakes.pop(); } /** * @dev Check if NFT contract is whitelisted for a pool */ function isNFTWhitelisted( uint256 _poolId, address _nftContract ) public view returns (bool) { require(_poolId < poolCount, "Pool does not exist"); Pool storage pool = pools[_poolId]; for (uint256 i = 0; i < pool.whitelistedNfts.length; i++) { if (pool.whitelistedNfts[i] == _nftContract) { return true; } } return false; } /** * @dev Get pool details including rewards */ function getPoolDetails( uint256 _poolId ) external view returns ( address[] memory whitelistedNfts, address rewardContract, uint256 lockPeriod, uint256 requiredNftAmount, bool active, PoolReward[] memory rewards ) { require(_poolId < poolCount, "Pool does not exist"); Pool storage pool = pools[_poolId]; return ( pool.whitelistedNfts, pool.rewardContract, pool.lockPeriod, pool.requiredNftAmount, pool.active, pool.rewards ); } /** * @dev Get all stakes for a user in a pool */ function getUserStakes( address _user, uint256 _poolId ) external view returns ( uint256[] memory tokenIds, address[] memory nftContracts, uint256[] memory timestamps, bool[] memory claimed, bool[] memory isWon, bool[] memory claimPending, uint256[] memory rewardIds ) { Stake[] storage stakes = userStakes[_user][_poolId]; if (stakes.length == 0) { return ( new uint256[](0), new address[](0), new uint256[](0), new bool[](0), new bool[](0), new bool[](0), new uint256[](0) ); } Pool storage pool = pools[_poolId]; uint256 tokensPerStake = pool.requiredNftAmount; uint256 totalStakes = stakes.length; uint256 totalTokens = totalStakes * tokensPerStake; tokenIds = new uint256[](totalTokens); nftContracts = new address[](totalTokens); timestamps = new uint256[](totalTokens); claimed = new bool[](totalTokens); isWon = new bool[](totalTokens); claimPending = new bool[](totalTokens); rewardIds = new uint256[](totalTokens); for (uint256 i = 0; i < totalStakes; i++) { for (uint256 j = 0; j < tokensPerStake; j++) { uint256 index = i * tokensPerStake + j; tokenIds[index] = stakes[i].tokenIds[j]; nftContracts[index] = stakes[i].nftContract; timestamps[index] = stakes[i].timestamp; claimed[index] = stakes[i].claimed; isWon[index] = stakes[i].isWon; claimPending[index] = stakes[i].claimPending; rewardIds[index] = stakes[i].rewardTokenId; } } return ( tokenIds, nftContracts, timestamps, claimed, isWon, claimPending, rewardIds ); } /** * @dev Get pending VRF requests */ function getPendingRequests() external view returns (uint256[] memory) { return requestIds; } /** * @dev Emergency function to handle stuck NFTs */ function emergencyWithdrawNFT( address _nftContract, uint256 _tokenId ) external onlyOwner { IERC721(_nftContract).safeTransferFrom( address(this), owner(), _tokenId ); } /** * @dev Update pool status */ function setPoolActive(uint256 _poolId, bool _active) external onlyOwner { require(_poolId < poolCount, "Pool does not exist"); pools[_poolId].active = _active; } /** * @dev Update pool lock period * @param _poolId ID of the pool * @param _newLockPeriod New lock period in seconds */ function setPoolLockPeriod(uint256 _poolId, uint256 _newLockPeriod) external onlyOwner { require(_poolId < poolCount, "Pool does not exist"); pools[_poolId].lockPeriod = _newLockPeriod; } /** * @dev Get all stake indices for a user in a pool * @param _user Address of the user * @param _poolId ID of the pool * @return Array of stake indices */ function getUserStakeIndices( address _user, uint256 _poolId ) external view returns (uint256[] memory) { Stake[] storage stakes = userStakes[_user][_poolId]; uint256[] memory indices = new uint256[](stakes.length); for (uint256 i = 0; i < stakes.length; i++) { indices[i] = i; } return indices; } /** * @dev Get specific stake details by index * @param _user Address of the user * @param _poolId ID of the pool * @param _stakeIndex Index of the stake * @return tokenIds Array of token IDs in this stake * @return nftContract Address of the NFT contract * @return timestamp Time when stake was created * @return claimed Whether rewards have been claimed */ function getStakeByIndex( address _user, uint256 _poolId, uint256 _stakeIndex ) external view returns ( uint256[] memory tokenIds, address nftContract, uint256 timestamp, bool claimed, bool isWon, bool claimPending, uint256 rewardIds ) { require(_poolId < poolCount, "Pool does not exist"); Stake[] storage stakes = userStakes[_user][_poolId]; require(_stakeIndex < stakes.length, "Invalid stake index"); Stake storage stakee = stakes[_stakeIndex]; return ( stakee.tokenIds, stakee.nftContract, stakee.timestamp, stakee.claimed, stakee.isWon, stakee.claimPending, stakee.rewardTokenId ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_trustedVRF","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"address","name":"nftContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"stakeIndex","type":"uint256"}],"name":"BatchStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"endDate","type":"uint256"}],"name":"EventEndDateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"nftContract","type":"address"}],"name":"NFTStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTUnlocked","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":"uint256","name":"poolId","type":"uint256"}],"name":"PoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"score","type":"uint256"}],"name":"StakeScoreUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256[]","name":"_stakeIndices","type":"uint256[]"}],"name":"bulkClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_stakeIndex","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_stakeGroupIndex","type":"uint256"}],"name":"claimLockedNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistedNfts","type":"address[]"},{"internalType":"address","name":"_rewardContract","type":"address"},{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"chance","type":"uint256"}],"internalType":"struct PrimordialOffering.PoolReward[]","name":"_rewards","type":"tuple[]"},{"internalType":"uint256","name":"_lockPeriod","type":"uint256"},{"internalType":"uint256","name":"_requiredNftAmount","type":"uint256"}],"name":"createPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftContract","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"emergencyWithdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eventEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxProcess","type":"uint256"}],"name":"finalizeProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPendingRequests","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolDetails","outputs":[{"internalType":"address[]","name":"whitelistedNfts","type":"address[]"},{"internalType":"address","name":"rewardContract","type":"address"},{"internalType":"uint256","name":"lockPeriod","type":"uint256"},{"internalType":"uint256","name":"requiredNftAmount","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"chance","type":"uint256"}],"internalType":"struct PrimordialOffering.PoolReward[]","name":"rewards","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_stakeIndex","type":"uint256"}],"name":"getStakeByIndex","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bool","name":"claimed","type":"bool"},{"internalType":"bool","name":"isWon","type":"bool"},{"internalType":"bool","name":"claimPending","type":"bool"},{"internalType":"uint256","name":"rewardIds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getUserStakeIndices","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getUserStakes","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"nftContracts","type":"address[]"},{"internalType":"uint256[]","name":"timestamps","type":"uint256[]"},{"internalType":"bool[]","name":"claimed","type":"bool[]"},{"internalType":"bool[]","name":"isWon","type":"bool[]"},{"internalType":"bool[]","name":"claimPending","type":"bool[]"},{"internalType":"uint256[]","name":"rewardIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserTotalStakeScore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_nftContract","type":"address"}],"name":"isNFTWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolStakeScore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pools","outputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"address","name":"rewardContract","type":"address"},{"internalType":"uint256","name":"lockPeriod","type":"uint256"},{"internalType":"uint256","name":"requiredNftAmount","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"requestIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endDate","type":"uint256"}],"name":"setEventEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"bool","name":"_active","type":"bool"}],"name":"setPoolActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_newLockPeriod","type":"uint256"}],"name":"setPoolLockPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_score","type":"uint256"}],"name":"setPoolStakeScore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_nftContract","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"stake","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustedVRF","outputs":[{"internalType":"contract ITrustedNativeVRF","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userStakeScore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userStakes","outputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bool","name":"claimed","type":"bool"},{"internalType":"bool","name":"claimPending","type":"bool"},{"internalType":"bool","name":"isWon","type":"bool"},{"internalType":"uint256","name":"rewardTokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vrfRequests","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"uint256","name":"stakeIndex","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
0x60806040523480156200001157600080fd5b5060405162003bcc38038062003bcc8339810160408190526200003491620000b9565b6200003f3362000069565b60018055600280546001600160a01b0319166001600160a01b0392909216919091179055620000e9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000cb578081fd5b81516001600160a01b0381168114620000e2578182fd5b9392505050565b613ad380620000f96000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80638da5cb5b1161011a578063bc197c81116100ad578063ea17fa931161007c578063ea17fa93146105d6578063f23a6e61146105e9578063f2fde38b14610608578063f525cb681461061b578063f746b0091461062457600080fd5b8063bc197c811461057e578063c34902631461059d578063ccca293a146105b0578063de9bff70146105c357600080fd5b8063ac4afa38116100e9578063ac4afa38146104b7578063b0cdef1e14610533578063b809e01b14610546578063b8764c391461055957600080fd5b80638da5cb5b14610450578063922b807914610475578063992f2e45146104885780639eab643f146104ae57600080fd5b806353f0fe711161019d57806377f5bf5e1161016c57806377f5bf5e146103ef578063788d37741461040257806380a1f7121461042257806384ff21dc1461042a5780638796ba8c1461043d57600080fd5b806353f0fe71146103a157806361c4ad55146103b4578063715018a6146103c757806373f46cbd146103cf57600080fd5b8063296d45e1116101d9578063296d45e11461030157806334144b0f1461031657806339af91f914610368578063419bc8ad1461037b57600080fd5b806301ffc9a71461020b578063150b7a021461023357806317dd99ba1461026a5780631a1d9252146102a3575b600080fd5b61021e610219366004613505565b610637565b60405190151581526020015b60405180910390f35b610251610241366004613293565b630a85bd0160e11b949350505050565b6040516001600160e01b0319909116815260200161022a565b61029561027836600461335a565b600960209081526000928352604080842090915290825290205481565b60405190815260200161022a565b6102dc6102b136600461352d565b6006602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b03909416845260208401929092529082015260600161022a565b61031461030f36600461352d565b61066e565b005b610329610324366004613383565b610ccf565b604080516001600160a01b03909716875260208701959095529215159385019390935215156060840152901515608083015260a082015260c00161022a565b61031461037636600461365b565b610d45565b61038e61038936600461335a565b610d5f565b60405161022a9796959493929190613886565b6103146103af3660046135df565b6113ce565b6103146103c23660046133b5565b611432565b610314611963565b6102956103dd36600461352d565b600a6020526000908152604090205481565b6103146103fd36600461365b565b611977565b61041561041036600461335a565b6119b5565b60405161022a9190613824565b610415611a82565b61021e61043836600461355d565b611ada565b61029561044b36600461352d565b611b89565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161022a565b61031461048336600461335a565b611baa565b61049b610496366004613383565b611c29565b60405161022a9796959493929190613837565b61029560085481565b6105016104c536600461352d565b6003602052600090815260409020805460028201546004830154600584015460069094015492936001600160a01b039092169290919060ff1685565b604080519586526001600160a01b0390941660208601529284019190915260608301521515608082015260a00161022a565b60025461045d906001600160a01b031681565b610314610554366004613588565b611d77565b61056c61056736600461352d565b612295565b60405161022a96959493929190613743565b61025161058c3660046131ee565b63bc197c8160e01b95945050505050565b6103146105ab36600461365b565b6123eb565b6103146105be36600461352d565b61240a565b6103146105d136600461365b565b61249c565b6103146105e4366004613628565b6129d7565b6102516105f73660046132f8565b63f23a6e6160e01b95945050505050565b6103146106163660046131cd565b612a23565b61029560045481565b6102956106323660046131cd565b612a99565b60006001600160e01b03198216630271189760e51b148061066857506301ffc9a760e01b6001600160e01b03198316145b92915050565b610676612ae3565b600081116106cb5760405162461bcd60e51b815260206004820152601760248201527f4d7573742070726f63657373206174206c65617374203100000000000000000060448201526064015b60405180910390fd5b60005b81811080156106de575060075415155b15610cc25760078054600091906106f790600190613a15565b8154811061071557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015480835260068252604092839020835160608101855281546001600160a01b0316815260018201549381019390935260020154928201929092526007805492935090918061078057634e487b7160e01b600052603160045260246000fd5b60008281526020812082016000199081019190915501905580516001600160a01b03166107ae5750506106ce565b60208082018051600090815260038352604080822085516001600160a01b0316835260058552818320935183529290935282812092840151835492939192811061080857634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020190508060030160019054906101000a900460ff1661083757505050506106ce565b600254604051630866f84560e21b8152600481018690526000916001600160a01b03169063219be1149060240160206040518083038186803b15801561087c57600080fd5b505afa158015610890573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b49190613545565b905060006108c46103e883613a47565b9050600080805b6003870154811015610bcf578660030181815481106108fa57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201548361091791906139ca565b925082841015610bbd57600087600301828154811061094657634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160608101825260039093029091018054808452600182015494840185905260029182015484840152908c01548d51925163020da84160e61b81529395506001600160a01b03169363836a1040936109ca9391906004019283526001600160a01b03919091166020830152604082015260600190565b600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b5050825160048a015550600090505b8754811015610bb257876000018181548110610a3357634e487b7160e01b600052603260045260246000fd5b90600052602060002001548a602001518b600001516001600160a01b03167f9e80c048bc588b388047ffc6e8153e7c11aa34312de7ed62e1858ff3a44ddce885600001518660200151604051610a93929190918252602082015260400190565b60405180910390a460018801548a5189546001600160a01b03909216916342842e0e9130918c9086908110610ad857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546040518463ffffffff1660e01b8152600401610b019392919061371f565b600060405180830381600087803b158015610b1b57600080fd5b505af1158015610b2f573d6000803e3d6000fd5b50505050876000018181548110610b5657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548a602001518b600001516001600160a01b03167f3a4dab0d536a198cc363f54ad4afe70072fe7f4783d436dd18ce792be0f6a74760405160405180910390a480610baa81613a2c565b915050610a07565b506001925050610bcf565b80610bc781613a2c565b9150506108cb565b5080610c625760005b8554811015610c6057856000018181548110610c0457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154886020015189600001516001600160a01b03167fc990f9830712a09e4e20c8af107da460d35928ba999d92ac2e161004658b0f8360405160405180910390a480610c5881613a2c565b915050610bd8565b505b600385018054600162ffffff199091166201000084151502178117909155600089815260066020526040812080546001600160a01b031916815591820181905560029091015588610cb281613a2c565b99505050505050505050506106ce565b50610ccc60018055565b50565b60056020528260005260406000206020528160005260406000208181548110610cf757600080fd5b600091825260209091206005909102016001810154600282015460038301546004909301546001600160a01b039092169550935060ff80831693506101008304811692620100009004169086565b610d4d612b3d565b6000918252600a602052604090912055565b6001600160a01b03821660009081526005602090815260408083208484529091529020805460609182918291829182918291829190610de857505060408051600080825260208201818152828401828152606084018381526080850184815260a0860185815260c0870195865260e08701909752949b50919950975095509093509091506113c2565b6000898152600360205260408120600581015483549192909190610e0c83836139f6565b9050806001600160401b03811115610e3457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e5d578160200160208202803683370190505b509b50806001600160401b03811115610e8657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eaf578160200160208202803683370190505b509a50806001600160401b03811115610ed857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f01578160200160208202803683370190505b509950806001600160401b03811115610f2a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f53578160200160208202803683370190505b509850806001600160401b03811115610f7c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fa5578160200160208202803683370190505b509750806001600160401b03811115610fce57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ff7578160200160208202803683370190505b509650806001600160401b0381111561102057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611049578160200160208202803683370190505b50955060005b828110156113bb5760005b848110156113a85760008161106f87856139f6565b61107991906139ca565b905087838154811061109b57634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160000182815481106110cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548f82815181106110f657634e487b7160e01b600052603260045260246000fd5b60200260200101818152505087838154811061112257634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160010160009054906101000a90046001600160a01b03168e828151811061116757634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250508783815481106111a757634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201600201548d82815181106111d957634e487b7160e01b600052603260045260246000fd5b60200260200101818152505087838154811061120557634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160009054906101000a900460ff168c828151811061124457634e487b7160e01b600052603260045260246000fd5b60200260200101901515908115158152505087838154811061127657634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160029054906101000a900460ff168b82815181106112b557634e487b7160e01b600052603260045260246000fd5b6020026020010190151590811515815250508783815481106112e757634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160019054906101000a900460ff168a828151811061132657634e487b7160e01b600052603260045260246000fd5b60200260200101901515908115158152505087838154811061135857634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016004015489828151811061138a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015250806113a081613a2c565b91505061105a565b50806113b381613a2c565b91505061104f565b5050505050505b92959891949750929550565b6113d6612ae3565b60005b81811015611423576114118484848481811061140557634e487b7160e01b600052603260045260246000fd5b90506020020135612b97565b8061141b81613a2c565b9150506113d9565b5061142d60018055565b505050565b61143a612b3d565b856114985760405162461bcd60e51b815260206004820152602860248201527f4d7573742077686974656c697374206174206c65617374206f6e65204e46542060448201526718dbdb9d1c9858dd60c21b60648201526084016106c2565b6001600160a01b0385166114ee5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642072657761726420636f6e747261637400000000000000000060448201526064016106c2565b8261153b5760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206174206c65617374206f6e652072657761726400000060448201526064016106c2565b6000811161158b5760405162461bcd60e51b815260206004820152601f60248201527f5265717569726564204e465420616d6f756e74206d757374206265203e20300060448201526064016106c2565b60005b868110156116965760006115a38260016139ca565b90505b87811015611683578888828181106115ce57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115e391906131cd565b6001600160a01b031689898481811061160c57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061162191906131cd565b6001600160a01b031614156116715760405162461bcd60e51b8152602060048201526016602482015275111d5c1b1a58d85d19481391950818dbdb9d1c9858dd60521b60448201526064016106c2565b8061167b81613a2c565b9150506115a6565b508061168e81613a2c565b91505061158e565b506000805b84811015611765578585828181106116c357634e487b7160e01b600052603260045260246000fd5b90506060020160400135826116d891906139ca565b915060008686838181106116fc57634e487b7160e01b600052603260045260246000fd5b90506060020160200135116117535760405162461bcd60e51b815260206004820152601960248201527f52657761726420616d6f756e74206d757374206265203e20300000000000000060448201526064016106c2565b8061175d81613a2c565b91505061169b565b506103e88111156117b85760405162461bcd60e51b815260206004820152601d60248201527f546f74616c206368616e636573206d757374206265203c3d203130303000000060448201526064016106c2565b60048054600091826117c983613a2c565b9091555060008181526003602052604081208281556002810180546001600160a01b0319166001600160a01b038c16179055600481018790556005810186905560068101805460ff191660011790559192505b898110156118a157816001018b8b8381811061184857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061185d91906131cd565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790558061189981613a2c565b91505061181c565b5060005b8681101561192b57816003018888838181106118d157634e487b7160e01b600052603260045260246000fd5b83546001810185556000948552602090942060609091029290920192600302909101905061191682828135815560208201356001820155604082013560028201555050565b5050808061192390613a2c565b9150506118a5565b5060405182907ffa88d81eaffbf548e3ffc6c6458827ce9906ad714060746b80909cdf8d1d7ef790600090a250505050505050505050565b61196b612b3d565b6119756000612ee7565b565b61197f612b3d565b60045482106119a05760405162461bcd60e51b81526004016106c29061394a565b60009182526003602052604090912060040155565b6001600160a01b038216600090815260056020908152604080832084845290915281208054606092906001600160401b03811115611a0357634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611a2c578160200160208202803683370190505b50905060005b8254811015611a795780828281518110611a5c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611a7181613a2c565b915050611a32565b50949350505050565b60606007805480602002602001604051908101604052809291908181526020018280548015611ad057602002820191906000526020600020905b815481526020019060010190808311611abc575b5050505050905090565b60006004548310611afd5760405162461bcd60e51b81526004016106c29061394a565b6000838152600360205260408120905b6001820154811015611b7e57836001600160a01b0316826001018281548110611b4657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611b6c57600192505050610668565b80611b7681613a2c565b915050611b0d565b506000949350505050565b60078181548110611b9957600080fd5b600091825260209091200154905081565b611bb2612b3d565b816001600160a01b03166342842e0e30611bd46000546001600160a01b031690565b846040518463ffffffff1660e01b8152600401611bf39392919061371f565b600060405180830381600087803b158015611c0d57600080fd5b505af1158015611c21573d6000803e3d6000fd5b505050505050565b60606000806000806000806004548910611c555760405162461bcd60e51b81526004016106c29061394a565b6001600160a01b038a1660009081526005602090815260408083208c8452909152902080548910611c985760405162461bcd60e51b81526004016106c29061391d565b6000818a81548110611cba57634e487b7160e01b600052603260045260246000fd5b60009182526020918290206001600590920201908101546002820154600383015460048401548454604080518289028101890190915281815295975087966001600160a01b0390951695939460ff80851695620100008604821695610100900490911693929091899190830182828015611d5357602002820191906000526020600020905b815481526020019060010190808311611d3f575b50505050509650985098509850985098509850985050509397509397509397909450565b611d7f612ae3565b6004548410611da05760405162461bcd60e51b81526004016106c29061394a565b6000848152600360205260409020600681015460ff16611df75760405162461bcd60e51b8152602060048201526012602482015271506f6f6c206973206e6f742061637469766560701b60448201526064016106c2565b6000805b6001830154811015611e6a57856001600160a01b0316836001018281548110611e3457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611e585760019150611e6a565b80611e6281613a2c565b915050611dfb565b5080611eb85760405162461bcd60e51b815260206004820152601c60248201527f4e465420636f6e7472616374206e6f742077686974656c69737465640000000060448201526064016106c2565b60058201548314611f175760405162461bcd60e51b8152602060048201526024808201527f4d757374207374616b65206578616374207265717569726564204e465420616d6044820152631bdd5b9d60e21b60648201526084016106c2565b6000836001600160401b03811115611f3f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611f68578160200160208202803683370190505b50905060005b84811015611fda57858582818110611f9657634e487b7160e01b600052603260045260246000fd5b90506020020135828281518110611fbd57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611fd281613a2c565b915050611f6e565b503360009081526005602081815260408084208b85528252808420815160e0810183528681526001600160a01b038c16818501524292810192909252606082018590526080820185905260a0820185905260c08201859052805460018101825590855293829020815180519295909402019261205a928492910190612fd5565b50602082810151600183810180546001600160a01b0319166001600160a01b039093169290921790915560408085015160028501556060850151600385018054608088015160a089015161ffff1990921693151561ff00191693909317610100931515939093029290921762ff00001916620100009215159290920291909117905560c090940151600490930192909255336000908152600582528381208b82529091529182205461210c9190613a15565b905060005b8581101561222f57876001600160a01b03166342842e0e33308a8a8681811061214a57634e487b7160e01b600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b815260040161216f9392919061371f565b600060405180830381600087803b15801561218957600080fd5b505af115801561219d573d6000803e3d6000fd5b5050505088336001600160a01b03167f57a4f8337497ba7e4859e5eda26ebfecb49199e35b2174b3733bb276a0b11a2b8989858181106121ed57634e487b7160e01b600052603260045260246000fd5b905060200201358b6040516122159291909182526001600160a01b0316602082015260400190565b60405180910390a38061222781613a2c565b915050612111565b5061223a3389612f37565b87336001600160a01b03167f58b10fcffcf24f6bd8da43c7785f6b94319fef47646de514a4cbb10b4081d82588888b8660405161227a94939291906137d7565b60405180910390a35050505061228f60018055565b50505050565b6060600080600080606060045487106122c05760405162461bcd60e51b81526004016106c29061394a565b6000878152600360208181526040928390206002810154600482015460058301546006840154600185018054895181890281018901909a52808a52959890976001600160a01b03909516969395929460ff9092169391890192909188919083018282801561235757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612339575b5050505050955080805480602002602001604051908101604052809291908181526020016000905b828210156123cf578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820154815250508152602001906001019061237f565b5050505090509650965096509650965096505091939550919395565b6123f3612ae3565b6123fd8282612b97565b61240660018055565b5050565b612412612b3d565b4281116124615760405162461bcd60e51b815260206004820152601a60248201527f456e642064617465206d75737420626520696e2066757475726500000000000060448201526064016106c2565b60088190556040518181527f5d7d41fe57533d10f7223d27e70a4b6a12fa239d9597c810bf19081d2ac0f76b9060200160405180910390a150565b6124a4612ae3565b60085442116124e75760405162461bcd60e51b815260206004820152600f60248201526e115d995b9d081b9bdd08195b991959608a1b60448201526064016106c2565b60045482106125085760405162461bcd60e51b81526004016106c29061394a565b3360009081526005602090815260408083208584529091529020805482106125425760405162461bcd60e51b81526004016106c29061391d565b80828154811061256257634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160019054906101000a900460ff16156125ce5760405162461bcd60e51b815260206004820152601760248201527f436c61696d207374696c6c20696e2070726f677265737300000000000000000060448201526064016106c2565b8082815481106125ee57634e487b7160e01b600052603260045260246000fd5b600091825260209091206003600590920201015460ff166126515760405162461bcd60e51b815260206004820152601d60248201527f5374616b65206e6f742066756c6c792070726f6365737365642079657400000060448201526064016106c2565b80828154811061267157634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160029054906101000a900460ff16156126ef5760405162461bcd60e51b815260206004820152602960248201527f57696e6e696e67207374616b657320617265206175746f6d61746963616c6c79604482015268081c995d1d5c9b995960ba1b60648201526084016106c2565b600081838154811061271157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905060005b815481101561283157600182015482546001600160a01b03909116906342842e0e903090339086908690811061276a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546040518463ffffffff1660e01b81526004016127939392919061371f565b600060405180830381600087803b1580156127ad57600080fd5b505af11580156127c1573d6000803e3d6000fd5b505050508160000181815481106127e857634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040519091879133917f3a4dab0d536a198cc363f54ad4afe70072fe7f4783d436dd18ce792be0f6a74791a48061282981613a2c565b915050612724565b50815461284090600190613a15565b83101561295b578154829061285790600190613a15565b8154811061287557634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502018284815481106128a357634e487b7160e01b600052603260045260246000fd5b600091825260209091208254600590920201906128c39082908490613020565b5060018281015490820180546001600160a01b0319166001600160a01b039092169190911790556002808301549082015560038083018054918301805460ff938416151560ff19821681178355835461010090819004861615150261ff001990911661ffff19909216919091171780825591546201000090819004909316151590920262ff0000199091161790556004918201549101555b8180548061297957634e487b7160e01b600052603160045260246000fd5b600082815260208120600019909201916005830201906129998282613060565b506001810180546001600160a01b031916905560006002820181905560038201805462ffffff19169055600490910155905550612406905060018055565b6129df612b3d565b6004548210612a005760405162461bcd60e51b81526004016106c29061394a565b600091825260036020526040909120600601805460ff1916911515919091179055565b612a2b612b3d565b6001600160a01b038116612a905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c2565b610ccc81612ee7565b6001600160a01b038116600090815260096020908152604080832060028452909152808220546001835281832054838052918320549091612ad9916139ca565b61066891906139ca565b60026001541415612b365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c2565b6002600155565b6000546001600160a01b031633146119755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c2565b6004548210612bb85760405162461bcd60e51b81526004016106c29061394a565b6000828152600360205260409020600681015460ff16612c0f5760405162461bcd60e51b8152602060048201526012602482015271506f6f6c206973206e6f742061637469766560701b60448201526064016106c2565b336000908152600560208181526040808420878552909152822090830154909190612c3a90856139e2565b82549091508110612c5d5760405162461bcd60e51b81526004016106c29061391d565b6000828281548110612c7f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600590910201600381015490915060ff1615612cd95760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016106c2565b6003810154610100900460ff1615612d335760405162461bcd60e51b815260206004820152601960248201527f436c61696d20616c726561647920696e2070726f67726573730000000000000060448201526064016106c2565b83600401548160020154612d4791906139ca565b421015612d8e5760405162461bcd60e51b8152602060048201526015602482015274131bd8dac81c195c9a5bd9081b9bdd08195b991959605a1b60448201526064016106c2565b60025460405163075022b160e11b8152600160048201526000916001600160a01b031690630ea0456290602401600060405180830381600087803b158015612dd557600080fd5b505af1158015612de9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e119190810190613473565b9050600081600081518110612e3657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151604080516060810182523381528084019b8c5280820197885260008381526006909452908320905181546001600160a01b03919091166001600160a01b031990911617815599516001808c019190915595516002909a01999099556003909301805461ff001916610100179055505060078054928301815590527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880193909355505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818152600a60209081526040808320546001600160a01b0386168452600983528184208585529092528220805491929091612f759084906139ca565b90915550506000818152600a60209081526040918290205482516001600160a01b03861681529182018490528183015290517f5017694bb9119525d33b17c0e21f549923bfbdeb7857d73d7e1e3647bf9d4eef9181900360600190a15050565b828054828255906000526020600020908101928215613010579160200282015b82811115613010578251825591602001919060010190612ff5565b5061301c92915061307a565b5090565b8280548282559060005260206000209081019282156130105760005260206000209182015b82811115613010578254825591600101919060010190613045565b5080546000825590600052602060002090810190610ccc91905b5b8082111561301c576000815560010161307b565b80356001600160a01b03811681146130a657600080fd5b919050565b60008083601f8401126130bc578182fd5b5081356001600160401b038111156130d2578182fd5b6020830191508360208260051b85010111156130ed57600080fd5b9250929050565b600082601f830112613104578081fd5b81356020613119613114836139a7565b613977565b80838252828201915082860187848660051b8901011115613138578586fd5b855b858110156131565781358452928401929084019060010161313a565b5090979650505050505050565b600082601f830112613173578081fd5b81356001600160401b0381111561318c5761318c613a87565b61319f601f8201601f1916602001613977565b8181528460208386010111156131b3578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156131de578081fd5b6131e78261308f565b9392505050565b600080600080600060a08688031215613205578081fd5b61320e8661308f565b945061321c6020870161308f565b935060408601356001600160401b0380821115613237578283fd5b61324389838a016130f4565b94506060880135915080821115613258578283fd5b61326489838a016130f4565b93506080880135915080821115613279578283fd5b5061328688828901613163565b9150509295509295909350565b600080600080608085870312156132a8578384fd5b6132b18561308f565b93506132bf6020860161308f565b92506040850135915060608501356001600160401b038111156132e0578182fd5b6132ec87828801613163565b91505092959194509250565b600080600080600060a0868803121561330f578081fd5b6133188661308f565b94506133266020870161308f565b9350604086013592506060860135915060808601356001600160401b0381111561334e578182fd5b61328688828901613163565b6000806040838503121561336c578182fd5b6133758361308f565b946020939093013593505050565b600080600060608486031215613397578283fd5b6133a08461308f565b95602085013595506040909401359392505050565b600080600080600080600060a0888a0312156133cf578485fd5b87356001600160401b03808211156133e5578687fd5b6133f18b838c016130ab565b909950975087915061340560208b0161308f565b965060408a013591508082111561341a578384fd5b818a0191508a601f83011261342d578384fd5b81358181111561343b578485fd5b8b602060608302850101111561344f578485fd5b989b979a509598602091909101979660608201359650608090910135945092505050565b60006020808385031215613485578182fd5b82516001600160401b0381111561349a578283fd5b8301601f810185136134aa578283fd5b80516134b8613114826139a7565b80828252848201915084840188868560051b87010111156134d7578687fd5b8694505b838510156134f95780518352600194909401939185019185016134db565b50979650505050505050565b600060208284031215613516578081fd5b81356001600160e01b0319811681146131e7578182fd5b60006020828403121561353e578081fd5b5035919050565b600060208284031215613556578081fd5b5051919050565b6000806040838503121561356f578182fd5b8235915061357f6020840161308f565b90509250929050565b6000806000806060858703121561359d578182fd5b843593506135ad6020860161308f565b925060408501356001600160401b038111156135c7578283fd5b6135d3878288016130ab565b95989497509550505050565b6000806000604084860312156135f3578081fd5b8335925060208401356001600160401b0381111561360f578182fd5b61361b868287016130ab565b9497909650939450505050565b6000806040838503121561363a578182fd5b8235915060208301358015158114613650578182fd5b809150509250929050565b6000806040838503121561366d578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156136b45781516001600160a01b03168752958201959082019060010161368f565b509495945050505050565b6000815180845260208085019450808401835b838110156136b45781511515875295820195908201906001016136d2565b6000815180845260208085019450808401835b838110156136b457815187529582019590820190600101613703565b6001600160a01b039384168152919092166020820152604081019190915260600190565b60c08152600061375660c083018961367c565b6001600160a01b03881660208481019190915260408085018990526060808601899052871515608087015285840360a0870152865180855287840194840190865b818110156137c4578651805184528681015187850152850151858401529585019591830191600101613797565b50909d9c50505050505050505050505050565b6060808252810184905260006001600160fb1b038511156137f6578081fd5b8460051b8087608085013782016080019081526001600160a01b039390931660208201526040015292915050565b6020815260006131e760208301846136f0565b60e08152600061384a60e083018a6136f0565b6001600160a01b0398909816602083015250604081019590955292151560608501529015156080840152151560a083015260c090910152919050565b60e08152600061389960e083018a6136f0565b82810360208401526138ab818a61367c565b905082810360408401526138bf81896136f0565b905082810360608401526138d381886136bf565b905082810360808401526138e781876136bf565b905082810360a08401526138fb81866136bf565b905082810360c084015261390f81856136f0565b9a9950505050505050505050565b602080825260139082015272092dcecc2d8d2c840e6e8c2d6ca40d2dcc8caf606b1b604082015260600190565b602080825260139082015272141bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561399f5761399f613a87565b604052919050565b60006001600160401b038211156139c0576139c0613a87565b5060051b60200190565b600082198211156139dd576139dd613a5b565b500190565b6000826139f1576139f1613a71565b500490565b6000816000190483118215151615613a1057613a10613a5b565b500290565b600082821015613a2757613a27613a5b565b500390565b6000600019821415613a4057613a40613a5b565b5060010190565b600082613a5657613a56613a71565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212205549f0acba1b016fbc40e6edc03de92ba936eda6db144dde5aa67a0d81b195f264736f6c634300080400330000000000000000000000008d96ed2609e636994ca3f6c4d85548fd1c1e5a82
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80638da5cb5b1161011a578063bc197c81116100ad578063ea17fa931161007c578063ea17fa93146105d6578063f23a6e61146105e9578063f2fde38b14610608578063f525cb681461061b578063f746b0091461062457600080fd5b8063bc197c811461057e578063c34902631461059d578063ccca293a146105b0578063de9bff70146105c357600080fd5b8063ac4afa38116100e9578063ac4afa38146104b7578063b0cdef1e14610533578063b809e01b14610546578063b8764c391461055957600080fd5b80638da5cb5b14610450578063922b807914610475578063992f2e45146104885780639eab643f146104ae57600080fd5b806353f0fe711161019d57806377f5bf5e1161016c57806377f5bf5e146103ef578063788d37741461040257806380a1f7121461042257806384ff21dc1461042a5780638796ba8c1461043d57600080fd5b806353f0fe71146103a157806361c4ad55146103b4578063715018a6146103c757806373f46cbd146103cf57600080fd5b8063296d45e1116101d9578063296d45e11461030157806334144b0f1461031657806339af91f914610368578063419bc8ad1461037b57600080fd5b806301ffc9a71461020b578063150b7a021461023357806317dd99ba1461026a5780631a1d9252146102a3575b600080fd5b61021e610219366004613505565b610637565b60405190151581526020015b60405180910390f35b610251610241366004613293565b630a85bd0160e11b949350505050565b6040516001600160e01b0319909116815260200161022a565b61029561027836600461335a565b600960209081526000928352604080842090915290825290205481565b60405190815260200161022a565b6102dc6102b136600461352d565b6006602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b03909416845260208401929092529082015260600161022a565b61031461030f36600461352d565b61066e565b005b610329610324366004613383565b610ccf565b604080516001600160a01b03909716875260208701959095529215159385019390935215156060840152901515608083015260a082015260c00161022a565b61031461037636600461365b565b610d45565b61038e61038936600461335a565b610d5f565b60405161022a9796959493929190613886565b6103146103af3660046135df565b6113ce565b6103146103c23660046133b5565b611432565b610314611963565b6102956103dd36600461352d565b600a6020526000908152604090205481565b6103146103fd36600461365b565b611977565b61041561041036600461335a565b6119b5565b60405161022a9190613824565b610415611a82565b61021e61043836600461355d565b611ada565b61029561044b36600461352d565b611b89565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161022a565b61031461048336600461335a565b611baa565b61049b610496366004613383565b611c29565b60405161022a9796959493929190613837565b61029560085481565b6105016104c536600461352d565b6003602052600090815260409020805460028201546004830154600584015460069094015492936001600160a01b039092169290919060ff1685565b604080519586526001600160a01b0390941660208601529284019190915260608301521515608082015260a00161022a565b60025461045d906001600160a01b031681565b610314610554366004613588565b611d77565b61056c61056736600461352d565b612295565b60405161022a96959493929190613743565b61025161058c3660046131ee565b63bc197c8160e01b95945050505050565b6103146105ab36600461365b565b6123eb565b6103146105be36600461352d565b61240a565b6103146105d136600461365b565b61249c565b6103146105e4366004613628565b6129d7565b6102516105f73660046132f8565b63f23a6e6160e01b95945050505050565b6103146106163660046131cd565b612a23565b61029560045481565b6102956106323660046131cd565b612a99565b60006001600160e01b03198216630271189760e51b148061066857506301ffc9a760e01b6001600160e01b03198316145b92915050565b610676612ae3565b600081116106cb5760405162461bcd60e51b815260206004820152601760248201527f4d7573742070726f63657373206174206c65617374203100000000000000000060448201526064015b60405180910390fd5b60005b81811080156106de575060075415155b15610cc25760078054600091906106f790600190613a15565b8154811061071557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091015480835260068252604092839020835160608101855281546001600160a01b0316815260018201549381019390935260020154928201929092526007805492935090918061078057634e487b7160e01b600052603160045260246000fd5b60008281526020812082016000199081019190915501905580516001600160a01b03166107ae5750506106ce565b60208082018051600090815260038352604080822085516001600160a01b0316835260058552818320935183529290935282812092840151835492939192811061080857634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020190508060030160019054906101000a900460ff1661083757505050506106ce565b600254604051630866f84560e21b8152600481018690526000916001600160a01b03169063219be1149060240160206040518083038186803b15801561087c57600080fd5b505afa158015610890573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b49190613545565b905060006108c46103e883613a47565b9050600080805b6003870154811015610bcf578660030181815481106108fa57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201548361091791906139ca565b925082841015610bbd57600087600301828154811061094657634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160608101825260039093029091018054808452600182015494840185905260029182015484840152908c01548d51925163020da84160e61b81529395506001600160a01b03169363836a1040936109ca9391906004019283526001600160a01b03919091166020830152604082015260600190565b600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b5050825160048a015550600090505b8754811015610bb257876000018181548110610a3357634e487b7160e01b600052603260045260246000fd5b90600052602060002001548a602001518b600001516001600160a01b03167f9e80c048bc588b388047ffc6e8153e7c11aa34312de7ed62e1858ff3a44ddce885600001518660200151604051610a93929190918252602082015260400190565b60405180910390a460018801548a5189546001600160a01b03909216916342842e0e9130918c9086908110610ad857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546040518463ffffffff1660e01b8152600401610b019392919061371f565b600060405180830381600087803b158015610b1b57600080fd5b505af1158015610b2f573d6000803e3d6000fd5b50505050876000018181548110610b5657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548a602001518b600001516001600160a01b03167f3a4dab0d536a198cc363f54ad4afe70072fe7f4783d436dd18ce792be0f6a74760405160405180910390a480610baa81613a2c565b915050610a07565b506001925050610bcf565b80610bc781613a2c565b9150506108cb565b5080610c625760005b8554811015610c6057856000018181548110610c0457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154886020015189600001516001600160a01b03167fc990f9830712a09e4e20c8af107da460d35928ba999d92ac2e161004658b0f8360405160405180910390a480610c5881613a2c565b915050610bd8565b505b600385018054600162ffffff199091166201000084151502178117909155600089815260066020526040812080546001600160a01b031916815591820181905560029091015588610cb281613a2c565b99505050505050505050506106ce565b50610ccc60018055565b50565b60056020528260005260406000206020528160005260406000208181548110610cf757600080fd5b600091825260209091206005909102016001810154600282015460038301546004909301546001600160a01b039092169550935060ff80831693506101008304811692620100009004169086565b610d4d612b3d565b6000918252600a602052604090912055565b6001600160a01b03821660009081526005602090815260408083208484529091529020805460609182918291829182918291829190610de857505060408051600080825260208201818152828401828152606084018381526080850184815260a0860185815260c0870195865260e08701909752949b50919950975095509093509091506113c2565b6000898152600360205260408120600581015483549192909190610e0c83836139f6565b9050806001600160401b03811115610e3457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e5d578160200160208202803683370190505b509b50806001600160401b03811115610e8657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eaf578160200160208202803683370190505b509a50806001600160401b03811115610ed857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f01578160200160208202803683370190505b509950806001600160401b03811115610f2a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f53578160200160208202803683370190505b509850806001600160401b03811115610f7c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fa5578160200160208202803683370190505b509750806001600160401b03811115610fce57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ff7578160200160208202803683370190505b509650806001600160401b0381111561102057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611049578160200160208202803683370190505b50955060005b828110156113bb5760005b848110156113a85760008161106f87856139f6565b61107991906139ca565b905087838154811061109b57634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160000182815481106110cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548f82815181106110f657634e487b7160e01b600052603260045260246000fd5b60200260200101818152505087838154811061112257634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160010160009054906101000a90046001600160a01b03168e828151811061116757634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250508783815481106111a757634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201600201548d82815181106111d957634e487b7160e01b600052603260045260246000fd5b60200260200101818152505087838154811061120557634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160009054906101000a900460ff168c828151811061124457634e487b7160e01b600052603260045260246000fd5b60200260200101901515908115158152505087838154811061127657634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160029054906101000a900460ff168b82815181106112b557634e487b7160e01b600052603260045260246000fd5b6020026020010190151590811515815250508783815481106112e757634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160019054906101000a900460ff168a828151811061132657634e487b7160e01b600052603260045260246000fd5b60200260200101901515908115158152505087838154811061135857634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502016004015489828151811061138a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015250806113a081613a2c565b91505061105a565b50806113b381613a2c565b91505061104f565b5050505050505b92959891949750929550565b6113d6612ae3565b60005b81811015611423576114118484848481811061140557634e487b7160e01b600052603260045260246000fd5b90506020020135612b97565b8061141b81613a2c565b9150506113d9565b5061142d60018055565b505050565b61143a612b3d565b856114985760405162461bcd60e51b815260206004820152602860248201527f4d7573742077686974656c697374206174206c65617374206f6e65204e46542060448201526718dbdb9d1c9858dd60c21b60648201526084016106c2565b6001600160a01b0385166114ee5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642072657761726420636f6e747261637400000000000000000060448201526064016106c2565b8261153b5760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206174206c65617374206f6e652072657761726400000060448201526064016106c2565b6000811161158b5760405162461bcd60e51b815260206004820152601f60248201527f5265717569726564204e465420616d6f756e74206d757374206265203e20300060448201526064016106c2565b60005b868110156116965760006115a38260016139ca565b90505b87811015611683578888828181106115ce57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115e391906131cd565b6001600160a01b031689898481811061160c57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061162191906131cd565b6001600160a01b031614156116715760405162461bcd60e51b8152602060048201526016602482015275111d5c1b1a58d85d19481391950818dbdb9d1c9858dd60521b60448201526064016106c2565b8061167b81613a2c565b9150506115a6565b508061168e81613a2c565b91505061158e565b506000805b84811015611765578585828181106116c357634e487b7160e01b600052603260045260246000fd5b90506060020160400135826116d891906139ca565b915060008686838181106116fc57634e487b7160e01b600052603260045260246000fd5b90506060020160200135116117535760405162461bcd60e51b815260206004820152601960248201527f52657761726420616d6f756e74206d757374206265203e20300000000000000060448201526064016106c2565b8061175d81613a2c565b91505061169b565b506103e88111156117b85760405162461bcd60e51b815260206004820152601d60248201527f546f74616c206368616e636573206d757374206265203c3d203130303000000060448201526064016106c2565b60048054600091826117c983613a2c565b9091555060008181526003602052604081208281556002810180546001600160a01b0319166001600160a01b038c16179055600481018790556005810186905560068101805460ff191660011790559192505b898110156118a157816001018b8b8381811061184857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061185d91906131cd565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790558061189981613a2c565b91505061181c565b5060005b8681101561192b57816003018888838181106118d157634e487b7160e01b600052603260045260246000fd5b83546001810185556000948552602090942060609091029290920192600302909101905061191682828135815560208201356001820155604082013560028201555050565b5050808061192390613a2c565b9150506118a5565b5060405182907ffa88d81eaffbf548e3ffc6c6458827ce9906ad714060746b80909cdf8d1d7ef790600090a250505050505050505050565b61196b612b3d565b6119756000612ee7565b565b61197f612b3d565b60045482106119a05760405162461bcd60e51b81526004016106c29061394a565b60009182526003602052604090912060040155565b6001600160a01b038216600090815260056020908152604080832084845290915281208054606092906001600160401b03811115611a0357634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611a2c578160200160208202803683370190505b50905060005b8254811015611a795780828281518110611a5c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611a7181613a2c565b915050611a32565b50949350505050565b60606007805480602002602001604051908101604052809291908181526020018280548015611ad057602002820191906000526020600020905b815481526020019060010190808311611abc575b5050505050905090565b60006004548310611afd5760405162461bcd60e51b81526004016106c29061394a565b6000838152600360205260408120905b6001820154811015611b7e57836001600160a01b0316826001018281548110611b4657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611b6c57600192505050610668565b80611b7681613a2c565b915050611b0d565b506000949350505050565b60078181548110611b9957600080fd5b600091825260209091200154905081565b611bb2612b3d565b816001600160a01b03166342842e0e30611bd46000546001600160a01b031690565b846040518463ffffffff1660e01b8152600401611bf39392919061371f565b600060405180830381600087803b158015611c0d57600080fd5b505af1158015611c21573d6000803e3d6000fd5b505050505050565b60606000806000806000806004548910611c555760405162461bcd60e51b81526004016106c29061394a565b6001600160a01b038a1660009081526005602090815260408083208c8452909152902080548910611c985760405162461bcd60e51b81526004016106c29061391d565b6000818a81548110611cba57634e487b7160e01b600052603260045260246000fd5b60009182526020918290206001600590920201908101546002820154600383015460048401548454604080518289028101890190915281815295975087966001600160a01b0390951695939460ff80851695620100008604821695610100900490911693929091899190830182828015611d5357602002820191906000526020600020905b815481526020019060010190808311611d3f575b50505050509650985098509850985098509850985050509397509397509397909450565b611d7f612ae3565b6004548410611da05760405162461bcd60e51b81526004016106c29061394a565b6000848152600360205260409020600681015460ff16611df75760405162461bcd60e51b8152602060048201526012602482015271506f6f6c206973206e6f742061637469766560701b60448201526064016106c2565b6000805b6001830154811015611e6a57856001600160a01b0316836001018281548110611e3457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611e585760019150611e6a565b80611e6281613a2c565b915050611dfb565b5080611eb85760405162461bcd60e51b815260206004820152601c60248201527f4e465420636f6e7472616374206e6f742077686974656c69737465640000000060448201526064016106c2565b60058201548314611f175760405162461bcd60e51b8152602060048201526024808201527f4d757374207374616b65206578616374207265717569726564204e465420616d6044820152631bdd5b9d60e21b60648201526084016106c2565b6000836001600160401b03811115611f3f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611f68578160200160208202803683370190505b50905060005b84811015611fda57858582818110611f9657634e487b7160e01b600052603260045260246000fd5b90506020020135828281518110611fbd57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611fd281613a2c565b915050611f6e565b503360009081526005602081815260408084208b85528252808420815160e0810183528681526001600160a01b038c16818501524292810192909252606082018590526080820185905260a0820185905260c08201859052805460018101825590855293829020815180519295909402019261205a928492910190612fd5565b50602082810151600183810180546001600160a01b0319166001600160a01b039093169290921790915560408085015160028501556060850151600385018054608088015160a089015161ffff1990921693151561ff00191693909317610100931515939093029290921762ff00001916620100009215159290920291909117905560c090940151600490930192909255336000908152600582528381208b82529091529182205461210c9190613a15565b905060005b8581101561222f57876001600160a01b03166342842e0e33308a8a8681811061214a57634e487b7160e01b600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b815260040161216f9392919061371f565b600060405180830381600087803b15801561218957600080fd5b505af115801561219d573d6000803e3d6000fd5b5050505088336001600160a01b03167f57a4f8337497ba7e4859e5eda26ebfecb49199e35b2174b3733bb276a0b11a2b8989858181106121ed57634e487b7160e01b600052603260045260246000fd5b905060200201358b6040516122159291909182526001600160a01b0316602082015260400190565b60405180910390a38061222781613a2c565b915050612111565b5061223a3389612f37565b87336001600160a01b03167f58b10fcffcf24f6bd8da43c7785f6b94319fef47646de514a4cbb10b4081d82588888b8660405161227a94939291906137d7565b60405180910390a35050505061228f60018055565b50505050565b6060600080600080606060045487106122c05760405162461bcd60e51b81526004016106c29061394a565b6000878152600360208181526040928390206002810154600482015460058301546006840154600185018054895181890281018901909a52808a52959890976001600160a01b03909516969395929460ff9092169391890192909188919083018282801561235757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612339575b5050505050955080805480602002602001604051908101604052809291908181526020016000905b828210156123cf578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820154815250508152602001906001019061237f565b5050505090509650965096509650965096505091939550919395565b6123f3612ae3565b6123fd8282612b97565b61240660018055565b5050565b612412612b3d565b4281116124615760405162461bcd60e51b815260206004820152601a60248201527f456e642064617465206d75737420626520696e2066757475726500000000000060448201526064016106c2565b60088190556040518181527f5d7d41fe57533d10f7223d27e70a4b6a12fa239d9597c810bf19081d2ac0f76b9060200160405180910390a150565b6124a4612ae3565b60085442116124e75760405162461bcd60e51b815260206004820152600f60248201526e115d995b9d081b9bdd08195b991959608a1b60448201526064016106c2565b60045482106125085760405162461bcd60e51b81526004016106c29061394a565b3360009081526005602090815260408083208584529091529020805482106125425760405162461bcd60e51b81526004016106c29061391d565b80828154811061256257634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160019054906101000a900460ff16156125ce5760405162461bcd60e51b815260206004820152601760248201527f436c61696d207374696c6c20696e2070726f677265737300000000000000000060448201526064016106c2565b8082815481106125ee57634e487b7160e01b600052603260045260246000fd5b600091825260209091206003600590920201015460ff166126515760405162461bcd60e51b815260206004820152601d60248201527f5374616b65206e6f742066756c6c792070726f6365737365642079657400000060448201526064016106c2565b80828154811061267157634e487b7160e01b600052603260045260246000fd5b906000526020600020906005020160030160029054906101000a900460ff16156126ef5760405162461bcd60e51b815260206004820152602960248201527f57696e6e696e67207374616b657320617265206175746f6d61746963616c6c79604482015268081c995d1d5c9b995960ba1b60648201526084016106c2565b600081838154811061271157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060050201905060005b815481101561283157600182015482546001600160a01b03909116906342842e0e903090339086908690811061276a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546040518463ffffffff1660e01b81526004016127939392919061371f565b600060405180830381600087803b1580156127ad57600080fd5b505af11580156127c1573d6000803e3d6000fd5b505050508160000181815481106127e857634e487b7160e01b600052603260045260246000fd5b60009182526020822001546040519091879133917f3a4dab0d536a198cc363f54ad4afe70072fe7f4783d436dd18ce792be0f6a74791a48061282981613a2c565b915050612724565b50815461284090600190613a15565b83101561295b578154829061285790600190613a15565b8154811061287557634e487b7160e01b600052603260045260246000fd5b90600052602060002090600502018284815481106128a357634e487b7160e01b600052603260045260246000fd5b600091825260209091208254600590920201906128c39082908490613020565b5060018281015490820180546001600160a01b0319166001600160a01b039092169190911790556002808301549082015560038083018054918301805460ff938416151560ff19821681178355835461010090819004861615150261ff001990911661ffff19909216919091171780825591546201000090819004909316151590920262ff0000199091161790556004918201549101555b8180548061297957634e487b7160e01b600052603160045260246000fd5b600082815260208120600019909201916005830201906129998282613060565b506001810180546001600160a01b031916905560006002820181905560038201805462ffffff19169055600490910155905550612406905060018055565b6129df612b3d565b6004548210612a005760405162461bcd60e51b81526004016106c29061394a565b600091825260036020526040909120600601805460ff1916911515919091179055565b612a2b612b3d565b6001600160a01b038116612a905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c2565b610ccc81612ee7565b6001600160a01b038116600090815260096020908152604080832060028452909152808220546001835281832054838052918320549091612ad9916139ca565b61066891906139ca565b60026001541415612b365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c2565b6002600155565b6000546001600160a01b031633146119755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c2565b6004548210612bb85760405162461bcd60e51b81526004016106c29061394a565b6000828152600360205260409020600681015460ff16612c0f5760405162461bcd60e51b8152602060048201526012602482015271506f6f6c206973206e6f742061637469766560701b60448201526064016106c2565b336000908152600560208181526040808420878552909152822090830154909190612c3a90856139e2565b82549091508110612c5d5760405162461bcd60e51b81526004016106c29061391d565b6000828281548110612c7f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600590910201600381015490915060ff1615612cd95760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016106c2565b6003810154610100900460ff1615612d335760405162461bcd60e51b815260206004820152601960248201527f436c61696d20616c726561647920696e2070726f67726573730000000000000060448201526064016106c2565b83600401548160020154612d4791906139ca565b421015612d8e5760405162461bcd60e51b8152602060048201526015602482015274131bd8dac81c195c9a5bd9081b9bdd08195b991959605a1b60448201526064016106c2565b60025460405163075022b160e11b8152600160048201526000916001600160a01b031690630ea0456290602401600060405180830381600087803b158015612dd557600080fd5b505af1158015612de9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e119190810190613473565b9050600081600081518110612e3657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151604080516060810182523381528084019b8c5280820197885260008381526006909452908320905181546001600160a01b03919091166001600160a01b031990911617815599516001808c019190915595516002909a01999099556003909301805461ff001916610100179055505060078054928301815590527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880193909355505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818152600a60209081526040808320546001600160a01b0386168452600983528184208585529092528220805491929091612f759084906139ca565b90915550506000818152600a60209081526040918290205482516001600160a01b03861681529182018490528183015290517f5017694bb9119525d33b17c0e21f549923bfbdeb7857d73d7e1e3647bf9d4eef9181900360600190a15050565b828054828255906000526020600020908101928215613010579160200282015b82811115613010578251825591602001919060010190612ff5565b5061301c92915061307a565b5090565b8280548282559060005260206000209081019282156130105760005260206000209182015b82811115613010578254825591600101919060010190613045565b5080546000825590600052602060002090810190610ccc91905b5b8082111561301c576000815560010161307b565b80356001600160a01b03811681146130a657600080fd5b919050565b60008083601f8401126130bc578182fd5b5081356001600160401b038111156130d2578182fd5b6020830191508360208260051b85010111156130ed57600080fd5b9250929050565b600082601f830112613104578081fd5b81356020613119613114836139a7565b613977565b80838252828201915082860187848660051b8901011115613138578586fd5b855b858110156131565781358452928401929084019060010161313a565b5090979650505050505050565b600082601f830112613173578081fd5b81356001600160401b0381111561318c5761318c613a87565b61319f601f8201601f1916602001613977565b8181528460208386010111156131b3578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156131de578081fd5b6131e78261308f565b9392505050565b600080600080600060a08688031215613205578081fd5b61320e8661308f565b945061321c6020870161308f565b935060408601356001600160401b0380821115613237578283fd5b61324389838a016130f4565b94506060880135915080821115613258578283fd5b61326489838a016130f4565b93506080880135915080821115613279578283fd5b5061328688828901613163565b9150509295509295909350565b600080600080608085870312156132a8578384fd5b6132b18561308f565b93506132bf6020860161308f565b92506040850135915060608501356001600160401b038111156132e0578182fd5b6132ec87828801613163565b91505092959194509250565b600080600080600060a0868803121561330f578081fd5b6133188661308f565b94506133266020870161308f565b9350604086013592506060860135915060808601356001600160401b0381111561334e578182fd5b61328688828901613163565b6000806040838503121561336c578182fd5b6133758361308f565b946020939093013593505050565b600080600060608486031215613397578283fd5b6133a08461308f565b95602085013595506040909401359392505050565b600080600080600080600060a0888a0312156133cf578485fd5b87356001600160401b03808211156133e5578687fd5b6133f18b838c016130ab565b909950975087915061340560208b0161308f565b965060408a013591508082111561341a578384fd5b818a0191508a601f83011261342d578384fd5b81358181111561343b578485fd5b8b602060608302850101111561344f578485fd5b989b979a509598602091909101979660608201359650608090910135945092505050565b60006020808385031215613485578182fd5b82516001600160401b0381111561349a578283fd5b8301601f810185136134aa578283fd5b80516134b8613114826139a7565b80828252848201915084840188868560051b87010111156134d7578687fd5b8694505b838510156134f95780518352600194909401939185019185016134db565b50979650505050505050565b600060208284031215613516578081fd5b81356001600160e01b0319811681146131e7578182fd5b60006020828403121561353e578081fd5b5035919050565b600060208284031215613556578081fd5b5051919050565b6000806040838503121561356f578182fd5b8235915061357f6020840161308f565b90509250929050565b6000806000806060858703121561359d578182fd5b843593506135ad6020860161308f565b925060408501356001600160401b038111156135c7578283fd5b6135d3878288016130ab565b95989497509550505050565b6000806000604084860312156135f3578081fd5b8335925060208401356001600160401b0381111561360f578182fd5b61361b868287016130ab565b9497909650939450505050565b6000806040838503121561363a578182fd5b8235915060208301358015158114613650578182fd5b809150509250929050565b6000806040838503121561366d578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156136b45781516001600160a01b03168752958201959082019060010161368f565b509495945050505050565b6000815180845260208085019450808401835b838110156136b45781511515875295820195908201906001016136d2565b6000815180845260208085019450808401835b838110156136b457815187529582019590820190600101613703565b6001600160a01b039384168152919092166020820152604081019190915260600190565b60c08152600061375660c083018961367c565b6001600160a01b03881660208481019190915260408085018990526060808601899052871515608087015285840360a0870152865180855287840194840190865b818110156137c4578651805184528681015187850152850151858401529585019591830191600101613797565b50909d9c50505050505050505050505050565b6060808252810184905260006001600160fb1b038511156137f6578081fd5b8460051b8087608085013782016080019081526001600160a01b039390931660208201526040015292915050565b6020815260006131e760208301846136f0565b60e08152600061384a60e083018a6136f0565b6001600160a01b0398909816602083015250604081019590955292151560608501529015156080840152151560a083015260c090910152919050565b60e08152600061389960e083018a6136f0565b82810360208401526138ab818a61367c565b905082810360408401526138bf81896136f0565b905082810360608401526138d381886136bf565b905082810360808401526138e781876136bf565b905082810360a08401526138fb81866136bf565b905082810360c084015261390f81856136f0565b9a9950505050505050505050565b602080825260139082015272092dcecc2d8d2c840e6e8c2d6ca40d2dcc8caf606b1b604082015260600190565b602080825260139082015272141bdbdb08191bd95cc81b9bdd08195e1a5cdd606a1b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561399f5761399f613a87565b604052919050565b60006001600160401b038211156139c0576139c0613a87565b5060051b60200190565b600082198211156139dd576139dd613a5b565b500190565b6000826139f1576139f1613a71565b500490565b6000816000190483118215151615613a1057613a10613a5b565b500290565b600082821015613a2757613a27613a5b565b500390565b6000600019821415613a4057613a40613a5b565b5060010190565b600082613a5657613a56613a71565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212205549f0acba1b016fbc40e6edc03de92ba936eda6db144dde5aa67a0d81b195f264736f6c63430008040033
Deployed Bytecode Sourcemap
27637:21849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13188:223;;;;;;:::i;:::-;;:::i;:::-;;;17346:14:1;;17339:22;17321:41;;17309:2;17294:18;13188:223:0;;;;;;;;21337:164;;;;;;:::i;:::-;-1:-1:-1;;;21337:164:0;;;;;;;;;;-1:-1:-1;;;;;;17535:33:1;;;17517:52;;17505:2;17490:18;21337:164:0;17472:103:1;29117:69:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;17967:25:1;;;17955:2;17940:18;29117:69:0;17922:76:1;28993:49:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28993:49:0;;;;;;;;;;;-1:-1:-1;;;;;12522:32:1;;;12504:51;;12586:2;12571:18;;12564:34;;;;12614:18;;;12607:34;12492:2;12477:18;28993:49:0;12459:188:1;37836:3536:0;;;;;;:::i;:::-;;:::i;:::-;;28921:65;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;11993:32:1;;;11975:51;;12057:2;12042:18;;12035:34;;;;12112:14;;12105:22;12085:18;;;12078:50;;;;12171:14;12164:22;12159:2;12144:18;;12137:50;12231:14;;12224:22;12218:3;12203:19;;12196:51;12013:3;12263:19;;12256:35;11962:3;11947:19;28921:65:0;11929:368:1;30310:155:0;;;;;;:::i;:::-;;:::i;44289:2164::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;36046:246::-;;;;;;:::i;:::-;;:::i;31045:1956::-;;;;;;:::i;:::-;;:::i;3102:103::-;;;:::i;29193:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;47359:210;;;;;;:::i;:::-;;:::i;47769:383::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46517:107::-;;;:::i;43017:442::-;;;;;;:::i;:::-;;:::i;29049:27::-;;;;;;:::i;:::-;;:::i;2461:87::-;2507:7;2534:6;-1:-1:-1;;;;;2534:6:0;2461:87;;;-1:-1:-1;;;;;11282:32:1;;;11264:51;;11252:2;11237:18;2461:87:0;11219:102:1;46703:255:0;;;;;;:::i;:::-;;:::i;48578:905::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;29083:27::-;;;;;;28846:37;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28846:37:0;;;;;;;;;;;;;;;27761:25:1;;;-1:-1:-1;;;;;27822:32:1;;;27817:2;27802:18;;27795:60;27871:18;;;27864:34;;;;27929:2;27914:18;;27907:34;27985:14;27978:22;27972:3;27957:19;;27950:51;27748:3;27733:19;28846:37:0;27715:292:1;27750:35:0;;;;;-1:-1:-1;;;;;27750:35:0;;;33346:2313;;;;;;:::i;:::-;;:::i;43533:681::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;14233:255::-;;;;;;:::i;:::-;-1:-1:-1;;;14233:255:0;;;;;;;;35735:122;;;;;;:::i;:::-;;:::i;33063:221::-;;;;;;:::i;:::-;;:::i;41450:1480::-;;;;;;:::i;:::-;;:::i;47016:185::-;;;;;;:::i;:::-;;:::i;13998:227::-;;;;;;:::i;:::-;-1:-1:-1;;;13998:227:0;;;;;;;;3360:201;;;;;;:::i;:::-;;:::i;28890:24::-;;;;;;30473:238;;;;;;:::i;:::-;;:::i;13188:223::-;13290:4;-1:-1:-1;;;;;;13314:49:0;;-1:-1:-1;;;13314:49:0;;:89;;-1:-1:-1;;;;;;;;;;12715:40:0;;;13367:36;13307:96;13188:223;-1:-1:-1;;13188:223:0:o;37836:3536::-;23910:21;:19;:21::i;:::-;37940:1:::1;37926:11;:15;37918:51;;;::::0;-1:-1:-1;;;37918:51:0;;24663:2:1;37918:51:0::1;::::0;::::1;24645:21:1::0;24702:2;24682:18;;;24675:30;24741:25;24721:18;;;24714:53;24784:18;;37918:51:0::1;;;;;;;;;37982:22;38019:3346;38043:11;38026:14;:28;:53;;;;-1:-1:-1::0;38058:10:0::1;:17:::0;:21;;38026:53:::1;38019:3346;;;38116:10;38127:17:::0;;38096::::1;::::0;38116:10;38127:21:::1;::::0;38147:1:::1;::::0;38127:21:::1;:::i;:::-;38116:33;;;;;;-1:-1:-1::0;;;38116:33:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;38192:22;;;:11:::1;:22:::0;;;;;;;38164:50;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;38164:50:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;;;;;;;;38229:10:::1;:16:::0;;38116:33;;-1:-1:-1;38164:50:0;;38229:16;::::1;;-1:-1:-1::0;;;38229:16:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38229:16:0;;;;;;;;;;38333:12;;-1:-1:-1;;;;;38333:26:0::1;38329:75;;38380:8;;;;38329:75;38446:14;::::0;;::::1;::::0;;38420:17:::1;38440:21:::0;;;:5:::1;:21:::0;;;;;;38513:12;;-1:-1:-1;;;;;38502:24:0::1;::::0;;:10:::1;:24:::0;;;;;38527:14;;38502:40;;;;;;;;;38561:18;;::::1;::::0;38502:92;;38440:21;;38420:17;;38502:92;::::1;;;-1:-1:-1::0;;;38502:92:0::1;;;;;;;;;;;;;;;;;;;38476:118;;38668:9;:22;;;;;;;;;;;;38663:72;;38711:8;;;;;;38663:72;38809:10;::::0;:35:::1;::::0;-1:-1:-1;;;38809:35:0;;::::1;::::0;::::1;17967:25:1::0;;;38786:20:0::1;::::0;-1:-1:-1;;;;;38809:10:0::1;::::0;:24:::1;::::0;17940:18:1;;38809:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38786:58:::0;-1:-1:-1;38859:14:0::1;38876:19;38891:4;38786:58:::0;38876:19:::1;:::i;:::-;38859:36:::0;-1:-1:-1;38910:19:0::1;::::0;;39009:1621:::1;39033:12;::::0;::::1;:19:::0;39029:23;::::1;39009:1621;;;39093:4;:12;;39106:1;39093:15;;;;;;-1:-1:-1::0;;;39093:15:0::1;;;;;;;;;;;;;;;;;;;:22;;;39078:37;;;;;:::i;:::-;;;39147:11;39138:6;:20;39134:1481;;;39227:24;39254:4;:12;;39267:1;39254:15;;;;;;-1:-1:-1::0;;;39254:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;39227:42:::1;::::0;;::::1;::::0;::::1;::::0;;39254:15:::1;::::0;;::::1;::::0;;::::1;39227:42:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;;39304:19;;::::1;::::0;39397:12;;39292:180;;-1:-1:-1;;;39292:180:0;;39227:42;;-1:-1:-1;;;;;;39304:19:0::1;::::0;39292:37:::1;::::0;:180:::1;::::0;39397:12;39227:42;39292:180:::1;;27360:25:1::0;;;-1:-1:-1;;;;;27421:32:1;;;;27416:2;27401:18;;27394:60;27485:2;27470:18;;27463:34;27348:2;27333:18;;27315:188;39292:180:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;39523:14:0;;39497:23:::1;::::0;::::1;:40:::0;-1:-1:-1;39523:14:0::1;::::0;-1:-1:-1;39648:887:0::1;39672:25:::0;;39668:29;::::1;39648:887;;;39868:9;:18;;39887:1;39868:21;;;;;;-1:-1:-1::0;;;39868:21:0::1;;;;;;;;;;;;;;;;;39823:7;:14;;;39780:7;:12;;;-1:-1:-1::0;;;;;39736:269:0::1;;39920:6;:14;;;39965:6;:13;;;39736:269;;;;;;28186:25:1::0;;;28242:2;28227:18;;28220:34;28174:2;28159:18;;28141:119;39736:269:0::1;;;;;;;;40096:21;::::0;::::1;::::0;40210:12;;40253:21;;-1:-1:-1;;;;;40096:21:0;;::::1;::::0;40088:47:::1;::::0;40174:4:::1;::::0;40096:9;;40272:1;;40253:21;::::1;;;-1:-1:-1::0;;;40253:21:0::1;;;;;;;;;;;;;;;;;40088:213;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40463:9;:18;;40482:1;40463:21;;;;;;-1:-1:-1::0;;;40463:21:0::1;;;;;;;;;;;;;;;;;40418:7;:14;;;40375:7;:12;;;-1:-1:-1::0;;;;;40333:178:0::1;;;;;;;;;;;39699:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39648:887;;;;40563:4;40557:10;;40590:5;;;39134:1481;39054:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39009:1621;;;;40651:3;40646:350;;40722:9;40717:264;40741:25:::0;;40737:29;::::1;40717:264;;;40917:9;:18;;40936:1;40917:21;;;;;;-1:-1:-1::0;;;40917:21:0::1;;;;;;;;;;;;;;;;;40876:7;:14;;;40837:7;:12;;;-1:-1:-1::0;;;;;40801:160:0::1;;;;;;;;;;;40768:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40717:264;;;;40646:350;41116:17;::::0;::::1;:24:::0;;41136:4:::1;-1:-1:-1::0;;41200:21:0;;;;;::::1;;;::::0;;;;;;-1:-1:-1;41300:22:0;;;:11:::1;:22;::::0;;;;41293:29;;-1:-1:-1;;;;;;41293:29:0::1;::::0;;;;::::1;::::0;;;41200:15:::1;41293:29:::0;;::::1;::::0;41337:16;::::1;::::0;::::1;:::i;:::-;;;;38019:3346;;;;;;;;;;;23942:1;23954:20:::0;23348:1;24474:22;;24291:213;23954:20;37836:3536;:::o;28921:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28921:65:0;;;;-1:-1:-1;28921:65:0;-1:-1:-1;28921:65:0;;;;;-1:-1:-1;28921:65:0;;;;;;;;;;;;:::o;30310:155::-;2347:13;:11;:13::i;:::-;30425:23:::1;::::0;;;:14:::1;:23;::::0;;;;;:32;30310:155::o;44289:2164::-;-1:-1:-1;;;;;44749:17:0;;44724:22;44749:17;;;:10;:17;;;;;;;;:26;;;;;;;;44792:13;;44433:25;;;;;;;;;;;;;;44749:26;44788:309;;-1:-1:-1;;44853:16:0;;;44867:1;44853:16;;;;;;44888;;;;;;44923;;;;;;44958:13;;;;;;44990;;;;;;45022;;;;;;45054:16;;;;;;;;;44853;;-1:-1:-1;44853:16:0;;-1:-1:-1;44888:16:0;-1:-1:-1;44923:16:0;-1:-1:-1;44958:13:0;;-1:-1:-1;44990:13:0;;-1:-1:-1;44827:258:0;;44788:309;45109:17;45129:14;;;:5;:14;;;;;45179:22;;;;45234:13;;45129:14;;45179:22;;45234:13;45280:28;45179:22;45234:13;45280:28;:::i;:::-;45258:50;;45346:11;-1:-1:-1;;;;;45332:26:0;;;;;-1:-1:-1;;;45332:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45332:26:0;;45321:37;;45398:11;-1:-1:-1;;;;;45384:26:0;;;;;-1:-1:-1;;;45384:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45384:26:0;;45369:41;;45448:11;-1:-1:-1;;;;;45434:26:0;;;;;-1:-1:-1;;;45434:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45434:26:0;;45421:39;;45492:11;-1:-1:-1;;;;;45481:23:0;;;;;-1:-1:-1;;;45481:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45481:23:0;;45471:33;;45534:11;-1:-1:-1;;;;;45523:23:0;;;;;-1:-1:-1;;;45523:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45523:23:0;;45515:31;;45583:11;-1:-1:-1;;;;;45572:23:0;;;;;-1:-1:-1;;;45572:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45572:23:0;;45557:38;;45632:11;-1:-1:-1;;;;;45618:26:0;;;;;-1:-1:-1;;;45618:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45618:26:0;;45606:38;;45662:9;45657:590;45681:11;45677:1;:15;45657:590;;;45719:9;45714:522;45738:14;45734:1;:18;45714:522;;;45778:13;45815:1;45794:18;45798:14;45794:1;:18;:::i;:::-;:22;;;;:::i;:::-;45778:38;;45853:6;45860:1;45853:9;;;;;;-1:-1:-1;;;45853:9:0;;;;;;;;;;;;;;;;;;;:18;;45872:1;45853:21;;;;;;-1:-1:-1;;;45853:21:0;;;;;;;;;;;;;;;;;45835:8;45844:5;45835:15;;;;;;-1:-1:-1;;;45835:15:0;;;;;;;;;;;;;;:39;;;;;45915:6;45922:1;45915:9;;;;;;-1:-1:-1;;;45915:9:0;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1;;;;;45915:21:0;45893:12;45906:5;45893:19;;;;;;-1:-1:-1;;;45893:19:0;;;;;;;;;;;;;;:43;-1:-1:-1;;;;;45893:43:0;;;-1:-1:-1;;;;;45893:43:0;;;;;45975:6;45982:1;45975:9;;;;;;-1:-1:-1;;;45975:9:0;;;;;;;;;;;;;;;;;;;:19;;;45955:10;45966:5;45955:17;;;;;;-1:-1:-1;;;45955:17:0;;;;;;;;;;;;;;:39;;;;;46030:6;46037:1;46030:9;;;;;;-1:-1:-1;;;46030:9:0;;;;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;46013:7;46021:5;46013:14;;;;;;-1:-1:-1;;;46013:14:0;;;;;;;;;;;;;;:34;;;;;;;;;;;46081:6;46088:1;46081:9;;;;;;-1:-1:-1;;;46081:9:0;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;;46066:5;46072;46066:12;;;;;;-1:-1:-1;;;46066:12:0;;;;;;;;;;;;;;:30;;;;;;;;;;;46137:6;46144:1;46137:9;;;;;;-1:-1:-1;;;46137:9:0;;;;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;46115:12;46128:5;46115:19;;;;;;-1:-1:-1;;;46115:19:0;;;;;;;;;;;;;;:44;;;;;;;;;;;46197:6;46204:1;46197:9;;;;;;-1:-1:-1;;;46197:9:0;;;;;;;;;;;;;;;;;;;:23;;;46178:9;46188:5;46178:16;;;;;;-1:-1:-1;;;46178:16:0;;;;;;;;;;;;;;;;;;:42;-1:-1:-1;45754:3:0;;;;:::i;:::-;;;;45714:522;;;-1:-1:-1;45694:3:0;;;;:::i;:::-;;;;45657:590;;;;46259:186;;;;;44289:2164;;;;;;;;;;;:::o;36046:246::-;23910:21;:19;:21::i;:::-;36179:9:::1;36174:111;36194:24:::0;;::::1;36174:111;;;36240:33;36247:7;36256:13;;36270:1;36256:16;;;;;-1:-1:-1::0;;;36256:16:0::1;;;;;;;;;;;;;;;36240:6;:33::i;:::-;36220:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36174:111;;;;23954:20:::0;23348:1;24474:22;;24291:213;23954:20;36046:246;;;:::o;31045:1956::-;2347:13;:11;:13::i;:::-;31312:27;31290:117:::1;;;::::0;-1:-1:-1;;;31290:117:0;;22132:2:1;31290:117:0::1;::::0;::::1;22114:21:1::0;22171:2;22151:18;;;22144:30;22210:34;22190:18;;;22183:62;-1:-1:-1;;;22261:18:1;;;22254:38;22309:19;;31290:117:0::1;22104:230:1::0;31290:117:0::1;-1:-1:-1::0;;;;;31426:29:0;::::1;31418:65;;;::::0;-1:-1:-1;;;31418:65:0;;20357:2:1;31418:65:0::1;::::0;::::1;20339:21:1::0;20396:2;20376:18;;;20369:30;20435:25;20415:18;;;20408:53;20478:18;;31418:65:0::1;20329:173:1::0;31418:65:0::1;31502:19:::0;31494:61:::1;;;::::0;-1:-1:-1;;;31494:61:0;;22892:2:1;31494:61:0::1;::::0;::::1;22874:21:1::0;22931:2;22911:18;;;22904:30;22970:31;22950:18;;;22943:59;23019:18;;31494:61:0::1;22864:179:1::0;31494:61:0::1;31595:1;31574:18;:22;31566:66;;;::::0;-1:-1:-1;;;31566:66:0;;21772:2:1;31566:66:0::1;::::0;::::1;21754:21:1::0;21811:2;21791:18;;;21784:30;21850:33;21830:18;;;21823:61;21901:18;;31566:66:0::1;21744:181:1::0;31566:66:0::1;31696:9;31691:311;31711:27:::0;;::::1;31691:311;;;31765:9;31777:5;:1:::0;31781::::1;31777:5;:::i;:::-;31765:17;;31760:231;31784:27:::0;;::::1;31760:231;;;31890:16;;31907:1;31890:19;;;;;-1:-1:-1::0;;;31890:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31867:42:0::1;:16;;31884:1;31867:19;;;;;-1:-1:-1::0;;;31867:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31867:42:0::1;;;31837:138;;;::::0;-1:-1:-1;;;31837:138:0;;22541:2:1;31837:138:0::1;::::0;::::1;22523:21:1::0;22580:2;22560:18;;;22553:30;-1:-1:-1;;;22599:18:1;;;22592:52;22661:18;;31837:138:0::1;22513:172:1::0;31837:138:0::1;31813:3:::0;::::1;::::0;::::1;:::i;:::-;;;;31760:231;;;-1:-1:-1::0;31740:3:0;::::1;::::0;::::1;:::i;:::-;;;;31691:311;;;-1:-1:-1::0;32057:20:0::1;::::0;32088:182:::1;32108:19:::0;;::::1;32088:182;;;32165:8;;32174:1;32165:11;;;;;-1:-1:-1::0;;;32165:11:0::1;;;;;;;;;;;;;;:18;;;32149:34;;;;;:::i;:::-;;;32227:1;32206:8;;32215:1;32206:11;;;;;-1:-1:-1::0;;;32206:11:0::1;;;;;;;;;;;;;;:18;;;:22;32198:60;;;::::0;-1:-1:-1;;;32198:60:0;;26140:2:1;32198:60:0::1;::::0;::::1;26122:21:1::0;26179:2;26159:18;;;26152:30;26218:27;26198:18;;;26191:55;26263:18;;32198:60:0::1;26112:175:1::0;32198:60:0::1;32129:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32088:182;;;;32304:4;32288:12;:20;;32280:62;;;::::0;-1:-1:-1;;;32280:62:0;;23250:2:1;32280:62:0::1;::::0;::::1;23232:21:1::0;23289:2;23269:18;;;23262:30;23328:31;23308:18;;;23301:59;23377:18;;32280:62:0::1;23222:179:1::0;32280:62:0::1;32375:9;:11:::0;;32355:17:::1;::::0;;32375:11:::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;32397:17:0::1;32417:16:::0;;;:5:::1;:16;::::0;;;;32444:23;;;32478:19:::1;::::0;::::1;:37:::0;;-1:-1:-1;;;;;;32478:37:0::1;-1:-1:-1::0;;;;;32478:37:0;::::1;;::::0;;32526:15:::1;::::0;::::1;:29:::0;;;32566:22:::1;::::0;::::1;:43:::0;;;32620:11:::1;::::0;::::1;:18:::0;;-1:-1:-1;;32620:18:0::1;-1:-1:-1::0;32620:18:0::1;::::0;;32417:16;;-1:-1:-1;32686:127:0::1;32706:27:::0;;::::1;32686:127;;;32755:4;:20;;32781:16;;32798:1;32781:19;;;;;-1:-1:-1::0;;;32781:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32755:46:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;32755:46:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;32755:46:0::1;-1:-1:-1::0;;;;;32755:46:0;;::::1;::::0;;;::::1;::::0;;32735:3;::::1;::::0;::::1;:::i;:::-;;;;32686:127;;;;32856:9;32851:103;32871:19:::0;;::::1;32851:103;;;32912:4;:12;;32930:8;;32939:1;32930:11;;;;;-1:-1:-1::0;;;32930:11:0::1;;;;;;;;;32912:30:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;32912:30:0;;;::::1;::::0;;;32930:11:::1;::::0;;::::1;::::0;;;::::1;::::0;32912:30:::1;;::::0;;::::1;::::0;-1:-1:-1;32912:30:0::1;32930:11:::0;32912:30;30114:5:1;30101:19;30095:4;30088:33;30175:2;30168:5;30164:14;30151:28;30147:1;30141:4;30137:12;30130:50;30234:2;30227:5;30223:14;30210:28;30206:1;30200:4;30196:12;30189:50;30078:167;;;32912:30:0::1;;;32892:3;;;;;:::i;:::-;;;;32851:103;;;-1:-1:-1::0;32971:22:0::1;::::0;32983:9;;32971:22:::1;::::0;;;::::1;2371:1;;;31045:1956:::0;;;;;;;:::o;3102:103::-;2347:13;:11;:13::i;:::-;3167:30:::1;3194:1;3167:18;:30::i;:::-;3102:103::o:0;47359:210::-;2347:13;:11;:13::i;:::-;47475:9:::1;;47465:7;:19;47457:51;;;;-1:-1:-1::0;;;47457:51:0::1;;;;;;;:::i;:::-;47519:14;::::0;;;:5:::1;:14;::::0;;;;;:25:::1;;:42:::0;47359:210::o;47769:383::-;-1:-1:-1;;;;;47932:17:0;;47907:22;47932:17;;;:10;:17;;;;;;;;:26;;;;;;;;48010:13;;47878:16;;47907:22;-1:-1:-1;;;;;47996:28:0;;;;;-1:-1:-1;;;47996:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47996:28:0;;47969:55;;48040:9;48035:85;48059:13;;48055:17;;48035:85;;;48107:1;48094:7;48102:1;48094:10;;;;;;-1:-1:-1;;;48094:10:0;;;;;;;;;;;;;;;;;;:14;48074:3;;;;:::i;:::-;;;;48035:85;;;-1:-1:-1;48137:7:0;47769:383;-1:-1:-1;;;;47769:383:0:o;46517:107::-;46570:16;46606:10;46599:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46517:107;:::o;43017:442::-;43128:4;43163:9;;43153:7;:19;43145:51;;;;-1:-1:-1;;;43145:51:0;;;;;;;:::i;:::-;43207:17;43227:14;;;:5;:14;;;;;;43254:175;43278:20;;;:27;43274:31;;43254:175;;;43358:12;-1:-1:-1;;;;;43331:39:0;:4;:20;;43352:1;43331:23;;;;;;-1:-1:-1;;;43331:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43331:23:0;:39;43327:91;;;43398:4;43391:11;;;;;;43327:91;43307:3;;;;:::i;:::-;;;;43254:175;;;-1:-1:-1;43446:5:0;;43017:442;-1:-1:-1;;;;43017:442:0:o;29049:27::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29049:27:0;:::o;46703:255::-;2347:13;:11;:13::i;:::-;46836:12:::1;-1:-1:-1::0;;;;;46828:38:0::1;;46889:4;46909:7;2507::::0;2534:6;-1:-1:-1;;;;;2534:6:0;;2461:87;46909:7:::1;46931:8;46828:122;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46703:255:::0;;:::o;48578:905::-;48754:25;48794:19;48828:17;48860:12;48887:10;48912:17;48944;49007:9;;48997:7;:19;48989:51;;;;-1:-1:-1;;;48989:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49076:17:0;;49051:22;49076:17;;;:10;:17;;;;;;;;:26;;;;;;;;49135:13;;49121:27;;49113:59;;;;-1:-1:-1;;;49113:59:0;;;;;;;:::i;:::-;49185:20;49208:6;49215:11;49208:19;;;;;;-1:-1:-1;;;49208:19:0;;;;;;;;;;;;;;;;;;49290:18;49208:19;;;;;49290:18;;;;49323:16;;;;49354:14;;;;49444:20;;;;49238:237;;;;;;;;;;;;;;;;;;49208:19;;-1:-1:-1;49208:19:0;;-1:-1:-1;;;;;49290:18:0;;;;49323:16;;49354:14;;;;;49383:12;;;;;;49290:18;49410:19;;;;;;49444:20;49238:237;;49208:19;;49238:237;;;49208:19;49238:237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48578:905;;;;;;;;;;;:::o;33346:2313::-;23910:21;:19;:21::i;:::-;33515:9:::1;;33505:7;:19;33497:51;;;;-1:-1:-1::0;;;33497:51:0::1;;;;;;;:::i;:::-;33559:17;33579:14:::0;;;:5:::1;:14;::::0;;;;33612:11:::1;::::0;::::1;::::0;::::1;;33604:42;;;::::0;-1:-1:-1;;;33604:42:0;;19603:2:1;33604:42:0::1;::::0;::::1;19585:21:1::0;19642:2;19622:18;;;19615:30;-1:-1:-1;;;19661:18:1;;;19654:48;19719:18;;33604:42:0::1;19575:168:1::0;33604:42:0::1;33706:18;33748:9:::0;33743:208:::1;33767:20;::::0;::::1;:27:::0;33763:31;::::1;33743:208;;;33847:12;-1:-1:-1::0;;;;;33820:39:0::1;:4;:20;;33841:1;33820:23;;;;;;-1:-1:-1::0;;;33820:23:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33820:23:0::1;:39;33816:124;;;33896:4;33880:20;;33919:5;;33816:124;33796:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33743:208;;;;33969:13;33961:54;;;::::0;-1:-1:-1;;;33961:54:0;;21067:2:1;33961:54:0::1;::::0;::::1;21049:21:1::0;21106:2;21086:18;;;21079:30;21145;21125:18;;;21118:58;21193:18;;33961:54:0::1;21039:178:1::0;33961:54:0::1;34119:22;::::0;::::1;::::0;34099:42;::::1;34077:128;;;::::0;-1:-1:-1;;;34077:128:0;;26494:2:1;34077:128:0::1;::::0;::::1;26476:21:1::0;26533:2;26513:18;;;26506:30;26572:34;26552:18;;;26545:62;-1:-1:-1;;;26623:18:1;;;26616:34;26667:19;;34077:128:0::1;26466:226:1::0;34077:128:0::1;34306:29;34352:9:::0;-1:-1:-1;;;;;34338:31:0;::::1;;;;-1:-1:-1::0;;;34338:31:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;34338:31:0::1;;34306:63;;34385:9;34380:104;34400:20:::0;;::::1;34380:104;;;34460:9;;34470:1;34460:12;;;;;-1:-1:-1::0;;;34460:12:0::1;;;;;;;;;;;;;;;34442;34455:1;34442:15;;;;;;-1:-1:-1::0;;;34442:15:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;:30;34422:3;::::1;::::0;::::1;:::i;:::-;;;;34380:104;;;-1:-1:-1::0;34553:10:0::1;34542:22;::::0;;;:10:::1;:22;::::0;;;;;;;:31;;;;;;;;34593:289;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;34593:289:0;::::1;::::0;;::::1;::::0;34714:15:::1;34593:289:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34542:351;;34593:289;34542:351;::::1;::::0;;;;;;;;;;;;;34593:289;;34542:351;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;34542:351:0::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;34542:351:0::1;-1:-1:-1::0;;;;;34542:351:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;34542:351:0;;;;::::1;;-1:-1:-1::0;;34542:351:0;;;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;34542:351:0::1;::::0;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;34988:10:::1;-1:-1:-1::0;34977:22:0;;;:10:::1;:22:::0;;;;;:31;;;;;;;;;:38;:42:::1;::::0;34542:351;34977:42:::1;:::i;:::-;34956:63;;35106:9;35101:297;35121:20:::0;;::::1;35101:297;;;35171:12;-1:-1:-1::0;;;;;35163:38:0::1;;35220:10;35257:4;35281:9;;35291:1;35281:12;;;;;-1:-1:-1::0;;;35281:12:0::1;;;;;;;;;;;;;;;35163:145;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35350:7;35338:10;-1:-1:-1::0;;;;;35328:58:0::1;;35359:9;;35369:1;35359:12;;;;;-1:-1:-1::0;;;35359:12:0::1;;;;;;;;;;;;;;;35373;35328:58;;;;;;27053:25:1::0;;;-1:-1:-1;;;;;27114:32:1;27109:2;27094:18;;27087:60;27041:2;27026:18;;27008:145;35328:58:0::1;;;;;;;;35143:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35101:297;;;;35410:38;35428:10;35440:7;35410:17;:38::i;:::-;35557:7;35532:10;-1:-1:-1::0;;;;;35506:145:0::1;;35579:9;;35603:12;35630:10;35506:145;;;;;;;;;:::i;:::-;;;;;;;;23942:1;;;;23954:20:::0;23348:1;24474:22;;24291:213;23954:20;33346:2313;;;;:::o;43533:681::-;43654:32;43701:22;43738:18;43771:25;43811:11;43837:27;43910:9;;43900:7;:19;43892:51;;;;-1:-1:-1;;;43892:51:0;;;;;;;:::i;:::-;43954:17;43974:14;;;:5;:14;;;;;;;;;44056:19;;;;44090:15;;;;44120:22;;;;44157:11;;;;44021:20;;;43999:207;;;;;;;;;;;;;;;;;43974:14;;44021:20;;-1:-1:-1;;;;;44056:19:0;;;;44090:15;;44120:22;;44157:11;;;;;44183:12;;;;43999:207;;44021:20;;43999:207;;;44021:20;43999:207;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43999:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43533:681;;;;;;;:::o;35735:122::-;23910:21;:19;:21::i;:::-;35821:28:::1;35828:7;35837:11;35821:6;:28::i;:::-;23954:20:::0;23348:1;24474:22;;24291:213;23954:20;35735:122;;:::o;33063:221::-;2347:13;:11;:13::i;:::-;33155:15:::1;33144:8;:26;33136:65;;;::::0;-1:-1:-1;;;33136:65:0;;25015:2:1;33136:65:0::1;::::0;::::1;24997:21:1::0;25054:2;25034:18;;;25027:30;25093:28;25073:18;;;25066:56;25139:18;;33136:65:0::1;24987:176:1::0;33136:65:0::1;33212:12;:23:::0;;;33251:25:::1;::::0;17967::1;;;33251::0::1;::::0;17955:2:1;17940:18;33251:25:0::1;;;;;;;33063:221:::0;:::o;41450:1480::-;23910:21;:19;:21::i;:::-;41602:12:::1;;41584:15;:30;41576:58;;;::::0;-1:-1:-1;;;41576:58:0;;18911:2:1;41576:58:0::1;::::0;::::1;18893:21:1::0;18950:2;18930:18;;;18923:30;-1:-1:-1;;;18969:18:1;;;18962:45;19024:18;;41576:58:0::1;18883:165:1::0;41576:58:0::1;41663:9;;41653:7;:19;41645:51;;;;-1:-1:-1::0;;;41645:51:0::1;;;;;;;:::i;:::-;41745:10;41709:22;41734::::0;;;:10:::1;:22;::::0;;;;;;;:31;;;;;;;;41803:13;;41784:32;::::1;41776:64;;;;-1:-1:-1::0;;;41776:64:0::1;;;;;;;:::i;:::-;41908:6;41915:16;41908:24;;;;;;-1:-1:-1::0;;;41908:24:0::1;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;41907:38;41885:111;;;::::0;-1:-1:-1;;;41885:111:0;;18559:2:1;41885:111:0::1;::::0;::::1;18541:21:1::0;18598:2;18578:18;;;18571:30;18637:25;18617:18;;;18610:53;18680:18;;41885:111:0::1;18531:173:1::0;41885:111:0::1;42029:6;42036:16;42029:24;;;;;;-1:-1:-1::0;;;42029:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:32:::1;:24;::::0;;::::1;;:32;::::0;::::1;;42007:111;;;::::0;-1:-1:-1;;;42007:111:0;;20709:2:1;42007:111:0::1;::::0;::::1;20691:21:1::0;20748:2;20728:18;;;20721:30;20787:31;20767:18;;;20760:59;20836:18;;42007:111:0::1;20681:179:1::0;42007:111:0::1;42152:6;42159:16;42152:24;;;;;;-1:-1:-1::0;;;42152:24:0::1;;;;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;42151:31;42129:122;;;::::0;-1:-1:-1;;;42129:122:0;;25370:2:1;42129:122:0::1;::::0;::::1;25352:21:1::0;25409:2;25389:18;;;25382:30;25448:34;25428:18;;;25421:62;-1:-1:-1;;;25499:18:1;;;25492:39;25548:19;;42129:122:0::1;25342:231:1::0;42129:122:0::1;42262:23;42288:6;42295:16;42288:24;;;;;;-1:-1:-1::0;;;42288:24:0::1;;;;;;;;;;;;;;;;;;;42262:50;;42373:9;42368:321;42392:25:::0;;42388:29;::::1;42368:321;;;42447:21;::::0;::::1;::::0;42566;;-1:-1:-1;;;;;42447:21:0;;::::1;::::0;42439:47:::1;::::0;42513:4:::1;::::0;42537:10:::1;::::0;42447:9;;42585:1;;42566:21;::::1;;;-1:-1:-1::0;;;42566:21:0::1;;;;;;;;;;;;;;;;;42439:163;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;42655:9;:18;;42674:1;42655:21;;;;;;-1:-1:-1::0;;;42655:21:0::1;;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;42622:55:::1;::::0;42655:21;;42646:7;;42634:10:::1;::::0;42622:55:::1;::::0;::::1;42419:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42368:321;;;-1:-1:-1::0;42802:13:0;;:17:::1;::::0;42818:1:::1;::::0;42802:17:::1;:::i;:::-;42783:16;:36;42779:121;;;42870:13:::0;;42863:6;;42870:17:::1;::::0;42886:1:::1;::::0;42870:17:::1;:::i;:::-;42863:25;;;;;;-1:-1:-1::0;;;42863:25:0::1;;;;;;;;;;;;;;;;;;;42836:6;42843:16;42836:24;;;;;;-1:-1:-1::0;;;42836:24:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:52;;:24:::1;::::0;;::::1;;::::0;:52:::1;::::0;:24;;:52;;::::1;:::i;:::-;-1:-1:-1::0;42836:52:0::1;::::0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;42836:52:0::1;-1:-1:-1::0;;;;;42836:52:0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;42836:52:0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;;;;-1:-1:-1::0;;42836:52:0;;;-1:-1:-1;;42836:52:0;;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;::::1;;;::::0;;::::1;-1:-1:-1::0;;42836:52:0;;::::1;;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;42779:121:::1;42910:6;:12;;;;;-1:-1:-1::0;;;42910:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;-1:-1:-1;;42910:12:0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;42910:12:0::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;42910:12:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;42910:12:0;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;23954:20:0;;-1:-1:-1;23348:1:0;24474:22;;24291:213;47016:185;2347:13;:11;:13::i;:::-;47118:9:::1;;47108:7;:19;47100:51;;;;-1:-1:-1::0;;;47100:51:0::1;;;;;;;:::i;:::-;47162:14;::::0;;;:5:::1;:14;::::0;;;;;:21:::1;;:31:::0;;-1:-1:-1;;47162:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47016:185::o;3360:201::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;3449:22:0;::::1;3441:73;;;::::0;-1:-1:-1;;;3441:73:0;;19950:2:1;3441:73:0::1;::::0;::::1;19932:21:1::0;19989:2;19969:18;;;19962:30;20028:34;20008:18;;;20001:62;-1:-1:-1;;;20079:18:1;;;20072:36;20125:19;;3441:73:0::1;19922:228:1::0;3441:73:0::1;3525:28;3544:8;3525:18;:28::i;30473:238::-:0;-1:-1:-1;;;;;30679:21:0;;30559:7;30679:21;;;:14;:21;;;;;;;;30701:1;30679:24;;;;;;;;;30661:1;30639:24;;;;;;30599;;;;;;;30679;;30599:64;;;:::i;:::-;:104;;;;:::i;23990:293::-;23392:1;24124:7;;:19;;24116:63;;;;-1:-1:-1;;;24116:63:0;;25780:2:1;24116:63:0;;;25762:21:1;25819:2;25799:18;;;25792:30;25858:33;25838:18;;;25831:61;25909:18;;24116:63:0;25752:181:1;24116:63:0;23392:1;24257:7;:18;23990:293::o;2626:132::-;2507:7;2534:6;-1:-1:-1;;;;;2534:6:0;930:10;2690:23;2682:68;;;;-1:-1:-1;;;2682:68:0;;23952:2:1;2682:68:0;;;23934:21:1;;;23971:18;;;23964:30;24030:34;24010:18;;;24003:62;24082:18;;2682:68:0;23924:182:1;36389:1366:0;36481:9;;36471:7;:19;36463:51;;;;-1:-1:-1;;;36463:51:0;;;;;;;:::i;:::-;36525:17;36545:14;;;:5;:14;;;;;36578:11;;;;;;36570:42;;;;-1:-1:-1;;;36570:42:0;;19603:2:1;36570:42:0;;;19585:21:1;19642:2;19622:18;;;19615:30;-1:-1:-1;;;19661:18:1;;;19654:48;19719:18;;36570:42:0;19575:168:1;36570:42:0;36661:10;36625:22;36650;;;:10;:22;;;;;;;;:31;;;;;;;;36793:22;;;;36650:31;;36625:22;36779:36;;:11;:36;:::i;:::-;36852:13;;36753:62;;-1:-1:-1;36834:31:0;;36826:63;;;;-1:-1:-1;;;36826:63:0;;;;;;;:::i;:::-;36900:23;36926:6;36933:15;36926:23;;;;;;-1:-1:-1;;;36926:23:0;;;;;;;;;;;;;;;;;;;;;;36964:17;;;;36926:23;;-1:-1:-1;36964:17:0;;36960:75;;;36998:25;;-1:-1:-1;;;36998:25:0;;23608:2:1;36998:25:0;;;23590:21:1;23647:2;23627:18;;;23620:30;-1:-1:-1;;;23666:18:1;;;23659:45;23721:18;;36998:25:0;23580:165:1;36960:75:0;37049:22;;;;;;;;;37045:90;;;37088:35;;-1:-1:-1;;;37088:35:0;;18205:2:1;37088:35:0;;;18187:21:1;18244:2;18224:18;;;18217:30;18283:27;18263:18;;;18256:55;18328:18;;37088:35:0;18177:175:1;37045:90:0;37208:4;:15;;;37186:9;:19;;;:37;;;;:::i;:::-;37167:15;:56;;37145:127;;;;-1:-1:-1;;;37145:127:0;;24313:2:1;37145:127:0;;;24295:21:1;24352:2;24332:18;;;24325:30;-1:-1:-1;;;24371:18:1;;;24364:51;24432:18;;37145:127:0;24285:171:1;37145:127:0;37342:10;;:27;;-1:-1:-1;;;37342:27:0;;:10;:27;;;17967:25:1;37319:20:0;;-1:-1:-1;;;;;37342:10:0;;:24;;17940:18:1;;37342:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37342:27:0;;;;;;;;;;;;:::i;:::-;37319:50;;37380:17;37400:3;37404:1;37400:6;;;;;;-1:-1:-1;;;37400:6:0;;;;;;;;;;;;;;;;;;;;37475:157;;;;;;;;37507:10;37475:157;;;;;;;;;;;;;;-1:-1:-1;37450:22:0;;;:11;:22;;;;;;:182;;;;-1:-1:-1;;;;;37450:182:0;;;;-1:-1:-1;;;;;;37450:182:0;;;;;;;;;;;;;;;;;;;;;;;;;;37679:22;;;;:29;;-1:-1:-1;;37679:29:0;37450:182;37679:29;;;-1:-1:-1;;37721:10:0;:26;;;;;;;;;;;;;;;-1:-1:-1;;;36389:1366:0:o;3721:191::-;3795:16;3814:6;;-1:-1:-1;;;;;3831:17:0;;;-1:-1:-1;;;;;;3831:17:0;;;;;;3864:40;;3814:6;;;;;;;3864:40;;3795:16;3864:40;3721:191;;:::o;30719:218::-;30832:23;;;;:14;:23;;;;;;;;;-1:-1:-1;;;;;30798:21:0;;;;:14;:21;;;;;:30;;;;;;;;:57;;30832:23;;30798:30;;:57;;30832:23;;30798:57;:::i;:::-;;;;-1:-1:-1;;30905:23:0;;;;:14;:23;;;;;;;;;;30871:58;;-1:-1:-1;;;;;12522:32:1;;12504:51;;12571:18;;;12564:34;;;12614:18;;;12607:34;30871:58:0;;;;;;;12492:2:1;30871:58:0;;;30719:218;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:395::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;344:8;334;327:26;286:2;-1:-1:-1;374:20:1;;-1:-1:-1;;;;;406:30:1;;403:2;;;456:8;446;439:26;403:2;500:4;492:6;488:17;476:29;;560:3;553:4;543:6;540:1;536:14;528:6;524:27;520:38;517:47;514:2;;;577:1;574;567:12;514:2;276:311;;;;;:::o;592:693::-;646:5;699:3;692:4;684:6;680:17;676:27;666:2;;721:5;714;707:20;666:2;761:6;748:20;787:4;811:60;827:43;867:2;827:43;:::i;:::-;811:60;:::i;:::-;893:3;917:2;912:3;905:15;945:2;940:3;936:12;929:19;;980:2;972:6;968:15;1032:3;1027:2;1021;1018:1;1014:10;1006:6;1002:23;998:32;995:41;992:2;;;1053:5;1046;1039:20;992:2;1079:5;1093:163;1107:2;1104:1;1101:9;1093:163;;;1164:17;;1152:30;;1202:12;;;;1234;;;;1125:1;1118:9;1093:163;;;-1:-1:-1;1274:5:1;;656:629;-1:-1:-1;;;;;;;656:629:1:o;1290:550::-;1332:5;1385:3;1378:4;1370:6;1366:17;1362:27;1352:2;;1407:5;1400;1393:20;1352:2;1447:6;1434:20;-1:-1:-1;;;;;1469:2:1;1466:26;1463:2;;;1495:18;;:::i;:::-;1539:55;1582:2;1563:13;;-1:-1:-1;;1559:27:1;1588:4;1555:38;1539:55;:::i;:::-;1619:2;1610:7;1603:19;1665:3;1658:4;1653:2;1645:6;1641:15;1637:26;1634:35;1631:2;;;1686:5;1679;1672:20;1631:2;1755;1748:4;1740:6;1736:17;1729:4;1720:7;1716:18;1703:55;1778:16;;;1796:4;1774:27;1767:42;;;;1782:7;1342:498;-1:-1:-1;;1342:498:1:o;1845:196::-;1904:6;1957:2;1945:9;1936:7;1932:23;1928:32;1925:2;;;1978:6;1970;1963:22;1925:2;2006:29;2025:9;2006:29;:::i;:::-;1996:39;1915:126;-1:-1:-1;;;1915:126:1:o;2046:983::-;2200:6;2208;2216;2224;2232;2285:3;2273:9;2264:7;2260:23;2256:33;2253:2;;;2307:6;2299;2292:22;2253:2;2335:29;2354:9;2335:29;:::i;:::-;2325:39;;2383:38;2417:2;2406:9;2402:18;2383:38;:::i;:::-;2373:48;;2472:2;2461:9;2457:18;2444:32;-1:-1:-1;;;;;2536:2:1;2528:6;2525:14;2522:2;;;2557:6;2549;2542:22;2522:2;2585:61;2638:7;2629:6;2618:9;2614:22;2585:61;:::i;:::-;2575:71;;2699:2;2688:9;2684:18;2671:32;2655:48;;2728:2;2718:8;2715:16;2712:2;;;2749:6;2741;2734:22;2712:2;2777:63;2832:7;2821:8;2810:9;2806:24;2777:63;:::i;:::-;2767:73;;2893:3;2882:9;2878:19;2865:33;2849:49;;2923:2;2913:8;2910:16;2907:2;;;2944:6;2936;2929:22;2907:2;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2243:786;;;;;;;;:::o;3034:557::-;3129:6;3137;3145;3153;3206:3;3194:9;3185:7;3181:23;3177:33;3174:2;;;3228:6;3220;3213:22;3174:2;3256:29;3275:9;3256:29;:::i;:::-;3246:39;;3304:38;3338:2;3327:9;3323:18;3304:38;:::i;:::-;3294:48;;3389:2;3378:9;3374:18;3361:32;3351:42;;3444:2;3433:9;3429:18;3416:32;-1:-1:-1;;;;;3463:6:1;3460:30;3457:2;;;3508:6;3500;3493:22;3457:2;3536:49;3577:7;3568:6;3557:9;3553:22;3536:49;:::i;:::-;3526:59;;;3164:427;;;;;;;:::o;3596:626::-;3700:6;3708;3716;3724;3732;3785:3;3773:9;3764:7;3760:23;3756:33;3753:2;;;3807:6;3799;3792:22;3753:2;3835:29;3854:9;3835:29;:::i;:::-;3825:39;;3883:38;3917:2;3906:9;3902:18;3883:38;:::i;:::-;3873:48;;3968:2;3957:9;3953:18;3940:32;3930:42;;4019:2;4008:9;4004:18;3991:32;3981:42;;4074:3;4063:9;4059:19;4046:33;-1:-1:-1;;;;;4094:6:1;4091:30;4088:2;;;4139:6;4131;4124:22;4088:2;4167:49;4208:7;4199:6;4188:9;4184:22;4167:49;:::i;4227:264::-;4295:6;4303;4356:2;4344:9;4335:7;4331:23;4327:32;4324:2;;;4377:6;4369;4362:22;4324:2;4405:29;4424:9;4405:29;:::i;:::-;4395:39;4481:2;4466:18;;;;4453:32;;-1:-1:-1;;;4314:177:1:o;4496:332::-;4573:6;4581;4589;4642:2;4630:9;4621:7;4617:23;4613:32;4610:2;;;4663:6;4655;4648:22;4610:2;4691:29;4710:9;4691:29;:::i;:::-;4681:39;4767:2;4752:18;;4739:32;;-1:-1:-1;4818:2:1;4803:18;;;4790:32;;4600:228;-1:-1:-1;;;4600:228:1:o;4833:1236::-;5011:6;5019;5027;5035;5043;5051;5059;5112:3;5100:9;5091:7;5087:23;5083:33;5080:2;;;5134:6;5126;5119:22;5080:2;5179:9;5166:23;-1:-1:-1;;;;;5249:2:1;5241:6;5238:14;5235:2;;;5270:6;5262;5255:22;5235:2;5314:70;5376:7;5367:6;5356:9;5352:22;5314:70;:::i;:::-;5403:8;;-1:-1:-1;5288:96:1;-1:-1:-1;5288:96:1;;-1:-1:-1;5457:38:1;5491:2;5476:18;;5457:38;:::i;:::-;5447:48;;5548:2;5537:9;5533:18;5520:32;5504:48;;5577:2;5567:8;5564:16;5561:2;;;5598:6;5590;5583:22;5561:2;5641:8;5630:9;5626:24;5616:34;;5688:7;5681:4;5677:2;5673:13;5669:27;5659:2;;5715:6;5707;5700:22;5659:2;5760;5747:16;5786:2;5778:6;5775:14;5772:2;;;5807:6;5799;5792:22;5772:2;5868:7;5863:2;5855:4;5847:6;5843:17;5839:2;5835:26;5831:35;5828:48;5825:2;;;5894:6;5886;5879:22;5825:2;5070:999;;;;-1:-1:-1;5070:999:1;;5930:2;5922:11;;;;;5952:6;6005:4;5990:20;;5977:34;;-1:-1:-1;6058:3:1;6043:19;;;6030:33;;-1:-1:-1;5070:999:1;-1:-1:-1;;;5070:999:1:o;6074:937::-;6169:6;6200:2;6243;6231:9;6222:7;6218:23;6214:32;6211:2;;;6264:6;6256;6249:22;6211:2;6302:9;6296:16;-1:-1:-1;;;;;6327:6:1;6324:30;6321:2;;;6372:6;6364;6357:22;6321:2;6400:22;;6453:4;6445:13;;6441:27;-1:-1:-1;6431:2:1;;6487:6;6479;6472:22;6431:2;6521;6515:9;6544:60;6560:43;6600:2;6560:43;:::i;6544:60::-;6626:3;6650:2;6645:3;6638:15;6678:2;6673:3;6669:12;6662:19;;6709:2;6705;6701:11;6757:7;6752:2;6746;6743:1;6739:10;6735:2;6731:19;6727:28;6724:41;6721:2;;;6783:6;6775;6768:22;6721:2;6810:6;6801:15;;6825:156;6839:2;6836:1;6833:9;6825:156;;;6896:10;;6884:23;;6857:1;6850:9;;;;;6927:12;;;;6959;;6825:156;;;-1:-1:-1;7000:5:1;6180:831;-1:-1:-1;;;;;;;6180:831:1:o;7016:306::-;7074:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:2;;;7148:6;7140;7133:22;7095:2;7179:23;;-1:-1:-1;;;;;;7231:32:1;;7221:43;;7211:2;;7283:6;7275;7268:22;7327:190;7386:6;7439:2;7427:9;7418:7;7414:23;7410:32;7407:2;;;7460:6;7452;7445:22;7407:2;-1:-1:-1;7488:23:1;;7397:120;-1:-1:-1;7397:120:1:o;7522:194::-;7592:6;7645:2;7633:9;7624:7;7620:23;7616:32;7613:2;;;7666:6;7658;7651:22;7613:2;-1:-1:-1;7694:16:1;;7603:113;-1:-1:-1;7603:113:1:o;7721:264::-;7789:6;7797;7850:2;7838:9;7829:7;7825:23;7821:32;7818:2;;;7871:6;7863;7856:22;7818:2;7912:9;7899:23;7889:33;;7941:38;7975:2;7964:9;7960:18;7941:38;:::i;:::-;7931:48;;7808:177;;;;;:::o;7990:599::-;8094:6;8102;8110;8118;8171:2;8159:9;8150:7;8146:23;8142:32;8139:2;;;8192:6;8184;8177:22;8139:2;8233:9;8220:23;8210:33;;8262:38;8296:2;8285:9;8281:18;8262:38;:::i;:::-;8252:48;;8351:2;8340:9;8336:18;8323:32;-1:-1:-1;;;;;8370:6:1;8367:30;8364:2;;;8415:6;8407;8400:22;8364:2;8459:70;8521:7;8512:6;8501:9;8497:22;8459:70;:::i;:::-;8129:460;;;;-1:-1:-1;8548:8:1;-1:-1:-1;;;;8129:460:1:o;8594:525::-;8689:6;8697;8705;8758:2;8746:9;8737:7;8733:23;8729:32;8726:2;;;8779:6;8771;8764:22;8726:2;8820:9;8807:23;8797:33;;8881:2;8870:9;8866:18;8853:32;-1:-1:-1;;;;;8900:6:1;8897:30;8894:2;;;8945:6;8937;8930:22;8894:2;8989:70;9051:7;9042:6;9031:9;9027:22;8989:70;:::i;:::-;8716:403;;9078:8;;-1:-1:-1;8963:96:1;;-1:-1:-1;;;;8716:403:1:o;9124:361::-;9189:6;9197;9250:2;9238:9;9229:7;9225:23;9221:32;9218:2;;;9271:6;9263;9256:22;9218:2;9312:9;9299:23;9289:33;;9372:2;9361:9;9357:18;9344:32;9419:5;9412:13;9405:21;9398:5;9395:32;9385:2;;9446:6;9438;9431:22;9385:2;9474:5;9464:15;;;9208:277;;;;;:::o;9490:258::-;9558:6;9566;9619:2;9607:9;9598:7;9594:23;9590:32;9587:2;;;9640:6;9632;9625:22;9587:2;-1:-1:-1;;9668:23:1;;;9738:2;9723:18;;;9710:32;;-1:-1:-1;9577:171:1:o;9753:463::-;9806:3;9844:5;9838:12;9871:6;9866:3;9859:19;9897:4;9926:2;9921:3;9917:12;9910:19;;9963:2;9956:5;9952:14;9984:3;9996:195;10010:6;10007:1;10004:13;9996:195;;;10075:13;;-1:-1:-1;;;;;10071:39:1;10059:52;;10131:12;;;;10166:15;;;;10107:1;10025:9;9996:195;;;-1:-1:-1;10207:3:1;;9814:402;-1:-1:-1;;;;;9814:402:1:o;10221:450::-;10271:3;10309:5;10303:12;10336:6;10331:3;10324:19;10362:4;10391:2;10386:3;10382:12;10375:19;;10428:2;10421:5;10417:14;10449:3;10461:185;10475:6;10472:1;10469:13;10461:185;;;10550:13;;10543:21;10536:29;10524:42;;10586:12;;;;10621:15;;;;10497:1;10490:9;10461:185;;10676:437;10729:3;10767:5;10761:12;10794:6;10789:3;10782:19;10820:4;10849:2;10844:3;10840:12;10833:19;;10886:2;10879:5;10875:14;10907:3;10919:169;10933:6;10930:1;10927:13;10919:169;;;10994:13;;10982:26;;11028:12;;;;11063:15;;;;10955:1;10948:9;10919:169;;11326:375;-1:-1:-1;;;;;11584:15:1;;;11566:34;;11636:15;;;;11631:2;11616:18;;11609:43;11683:2;11668:18;;11661:34;;;;11516:2;11501:18;;11483:218::o;12652:1365::-;13069:3;13058:9;13051:22;13032:4;13096:57;13148:3;13137:9;13133:19;13125:6;13096:57;:::i;:::-;-1:-1:-1;;;;;13210:32:1;;13172:2;13190:18;;;13183:60;;;;13262:2;13280:18;;;13273:34;;;13326:2;13344:18;;;13337:34;;;13415:14;;13408:22;13402:3;13387:19;;13380:51;13468:22;;;13230:3;13447:19;;13440:51;13540:13;;13562:22;;;13638:15;;;;13600;;;13671:4;13684:307;13698:6;13695:1;13692:13;13684:307;;;13757:13;;13795:9;;13783:22;;13845:11;;;13839:18;13825:12;;;13818:40;13898:11;;13892:18;13878:12;;;13871:40;13966:15;;;;13931:12;;;;13720:1;13713:9;13684:307;;;-1:-1:-1;14008:3:1;;13041:976;-1:-1:-1;;;;;;;;;;;;;13041:976:1:o;14022:667::-;14267:2;14249:21;;;14286:18;;14279:34;;;-1:-1:-1;;;;;;14325:31:1;;14322:2;;;14372:4;14366;14359:18;14322:2;14409:6;14406:1;14402:14;14467:6;14459;14453:3;14442:9;14438:19;14425:49;14497:22;;14521:3;14493:32;14534:16;;;-1:-1:-1;;;;;14607:32:1;;;;14600:4;14585:20;;14578:62;14671:2;14656:18;14649:34;14493:32;14239:450;-1:-1:-1;;14239:450:1:o;14694:261::-;14873:2;14862:9;14855:21;14836:4;14893:56;14945:2;14934:9;14930:18;14922:6;14893:56;:::i;14960:748::-;15289:3;15278:9;15271:22;15252:4;15310:57;15362:3;15351:9;15347:19;15339:6;15310:57;:::i;:::-;-1:-1:-1;;;;;15403:32:1;;;;15398:2;15383:18;;15376:60;-1:-1:-1;15467:2:1;15452:18;;15445:34;;;;15522:14;;15515:22;15510:2;15495:18;;15488:50;15582:14;;15575:22;15569:3;15554:19;;15547:51;15642:14;15635:22;15423:3;15614:19;;15607:51;15689:3;15674:19;;;15667:35;15302:65;15261:447;-1:-1:-1;15261:447:1:o;15713:1463::-;16342:3;16331:9;16324:22;16305:4;16369:57;16421:3;16410:9;16406:19;16398:6;16369:57;:::i;:::-;16474:9;16466:6;16462:22;16457:2;16446:9;16442:18;16435:50;16508:44;16545:6;16537;16508:44;:::i;:::-;16494:58;;16600:9;16592:6;16588:22;16583:2;16572:9;16568:18;16561:50;16634:44;16671:6;16663;16634:44;:::i;:::-;16620:58;;16726:9;16718:6;16714:22;16709:2;16698:9;16694:18;16687:50;16760:41;16794:6;16786;16760:41;:::i;:::-;16746:55;;16850:9;16842:6;16838:22;16832:3;16821:9;16817:19;16810:51;16884:41;16918:6;16910;16884:41;:::i;:::-;16870:55;;16974:9;16966:6;16962:22;16956:3;16945:9;16941:19;16934:51;17008:41;17042:6;17034;17008:41;:::i;:::-;16994:55;;17098:9;17090:6;17086:22;17080:3;17069:9;17065:19;17058:51;17126:44;17163:6;17155;17126:44;:::i;:::-;17118:52;16314:862;-1:-1:-1;;;;;;;;;;16314:862:1:o;19053:343::-;19255:2;19237:21;;;19294:2;19274:18;;;19267:30;-1:-1:-1;;;19328:2:1;19313:18;;19306:49;19387:2;19372:18;;19227:169::o;21222:343::-;21424:2;21406:21;;;21463:2;21443:18;;;21436:30;-1:-1:-1;;;21497:2:1;21482:18;;21475:49;21556:2;21541:18;;21396:169::o;28265:275::-;28336:2;28330:9;28401:2;28382:13;;-1:-1:-1;;28378:27:1;28366:40;;-1:-1:-1;;;;;28421:34:1;;28457:22;;;28418:62;28415:2;;;28483:18;;:::i;:::-;28519:2;28512:22;28310:230;;-1:-1:-1;28310:230:1:o;28545:183::-;28605:4;-1:-1:-1;;;;;28630:6:1;28627:30;28624:2;;;28660:18;;:::i;:::-;-1:-1:-1;28705:1:1;28701:14;28717:4;28697:25;;28614:114::o;28733:128::-;28773:3;28804:1;28800:6;28797:1;28794:13;28791:2;;;28810:18;;:::i;:::-;-1:-1:-1;28846:9:1;;28781:80::o;28866:120::-;28906:1;28932;28922:2;;28937:18;;:::i;:::-;-1:-1:-1;28971:9:1;;28912:74::o;28991:168::-;29031:7;29097:1;29093;29089:6;29085:14;29082:1;29079:21;29074:1;29067:9;29060:17;29056:45;29053:2;;;29104:18;;:::i;:::-;-1:-1:-1;29144:9:1;;29043:116::o;29164:125::-;29204:4;29232:1;29229;29226:8;29223:2;;;29237:18;;:::i;:::-;-1:-1:-1;29274:9:1;;29213:76::o;29294:135::-;29333:3;-1:-1:-1;;29354:17:1;;29351:2;;;29374:18;;:::i;:::-;-1:-1:-1;29421:1:1;29410:13;;29341:88::o;29434:112::-;29466:1;29492;29482:2;;29497:18;;:::i;:::-;-1:-1:-1;29531:9:1;;29472:74::o;29551:127::-;29612:10;29607:3;29603:20;29600:1;29593:31;29643:4;29640:1;29633:15;29667:4;29664:1;29657:15;29683:127;29744:10;29739:3;29735:20;29732:1;29725:31;29775:4;29772:1;29765:15;29799:4;29796:1;29789:15;29815:127;29876:10;29871:3;29867:20;29864:1;29857:31;29907:4;29904:1;29897:15;29931:4;29928:1;29921:15
Swarm Source
ipfs://5549f0acba1b016fbc40e6edc03de92ba936eda6db144dde5aa67a0d81b195f2
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.