More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 53,907 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0xafd76a0b | 12487085 | 220 days ago | IN | 0 CRO | 2.3190105 | ||||
0xafd76a0b | 12486990 | 220 days ago | IN | 0 CRO | 2.1261005 | ||||
0xafd76a0b | 12486865 | 220 days ago | IN | 0 CRO | 2.1060217 | ||||
0xafd76a0b | 12486755 | 220 days ago | IN | 0 CRO | 2.1666217 | ||||
0xafd76a0b | 12456604 | 222 days ago | IN | 0 CRO | 0.6397138 | ||||
0xafd76a0b | 12440578 | 223 days ago | IN | 0 CRO | 0.8184535 | ||||
0xafd76a0b | 12391853 | 227 days ago | IN | 0 CRO | 0.639835 | ||||
0xafd76a0b | 12391844 | 227 days ago | IN | 0 CRO | 0.812545 | ||||
0xafd76a0b | 12391829 | 227 days ago | IN | 0 CRO | 0.7982535 | ||||
0xafd76a0b | 12391812 | 227 days ago | IN | 0 CRO | 0.9709635 | ||||
0xafd76a0b | 12390946 | 227 days ago | IN | 0 CRO | 2.1869126 | ||||
0xafd76a0b | 12390923 | 227 days ago | IN | 0 CRO | 2.1869126 | ||||
0xafd76a0b | 12390895 | 227 days ago | IN | 0 CRO | 2.1869126 | ||||
0xafd76a0b | 12377347 | 228 days ago | IN | 0 CRO | 3.3504831 | ||||
0xafd76a0b | 12372427 | 228 days ago | IN | 0 CRO | 0.6397138 | ||||
0xafd76a0b | 12326266 | 231 days ago | IN | 0 CRO | 0.997072 | ||||
0xafd76a0b | 12194571 | 239 days ago | IN | 0 CRO | 0.8185949 | ||||
0xafd76a0b | 12194326 | 240 days ago | IN | 0 CRO | 0.9914261 | ||||
0xafd76a0b | 12194057 | 240 days ago | IN | 0 CRO | 0.8183323 | ||||
0xafd76a0b | 12194045 | 240 days ago | IN | 0 CRO | 0.639835 | ||||
0xafd76a0b | 12193963 | 240 days ago | IN | 0 CRO | 0.812545 | ||||
0xafd76a0b | 12148372 | 242 days ago | IN | 0 CRO | 0.7985161 | ||||
0xafd76a0b | 12134387 | 243 days ago | IN | 0 CRO | 0.639835 | ||||
0xafd76a0b | 12134379 | 243 days ago | IN | 0 CRO | 0.8184535 | ||||
0xafd76a0b | 12134308 | 243 days ago | IN | 0 CRO | 0.812545 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
12125073 | 244 days ago | 11.25 CRO | ||||
12125073 | 244 days ago | 11.25 CRO | ||||
12125073 | 244 days ago | 438.75 CRO | ||||
12125073 | 244 days ago | 438.75 CRO | ||||
12125073 | 244 days ago | 450 CRO | ||||
12097505 | 246 days ago | 10 CRO | ||||
12097505 | 246 days ago | 10 CRO | ||||
12097505 | 246 days ago | 390 CRO | ||||
12097505 | 246 days ago | 390 CRO | ||||
12097505 | 246 days ago | 400 CRO | ||||
11933644 | 256 days ago | 10 CRO | ||||
11933628 | 256 days ago | 0.05 CRO | ||||
11933628 | 256 days ago | 0.05 CRO | ||||
11933628 | 256 days ago | 1.95 CRO | ||||
11933628 | 256 days ago | 1.95 CRO | ||||
11933628 | 256 days ago | 2 CRO | ||||
11932305 | 257 days ago | 0.45 CRO | ||||
11932305 | 257 days ago | 0.45 CRO | ||||
11932305 | 257 days ago | 17.55 CRO | ||||
11932305 | 257 days ago | 17.55 CRO | ||||
11932305 | 257 days ago | 18 CRO | ||||
11932268 | 257 days ago | 1.25 CRO | ||||
11932268 | 257 days ago | 1.25 CRO | ||||
11932268 | 257 days ago | 48.75 CRO | ||||
11932268 | 257 days ago | 48.75 CRO |
Loading...
Loading
Contract Name:
MarketNG
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-05-10 */ // Sources flattened with hardhat v2.6.7 https://hardhat.org // SPDX-License-Identifier: UNLICENSED pragma abicoder v2; pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IWETH is IERC20 { function deposit() external payable; function withdraw(uint256 wad) external; } interface IMintable { function mint(address to, bytes memory data) external; } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an 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 be 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; } /** * @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. 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. 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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } contract MarketNG is IERC721Receiver, IERC1155Receiver, ReentrancyGuard, Ownable, Pausable { using SafeERC20 for IERC20; uint8 public constant KIND_SELL = 1; uint8 public constant KIND_BUY = 2; uint8 public constant KIND_AUCTION = 3; uint8 public constant STATUS_OPEN = 0; uint8 public constant STATUS_DONE = 1; uint8 public constant STATUS_CANCELLED = 2; uint8 public constant OP_MIN = 0; // invalid, for checks only uint8 public constant OP_COMPLETE_SELL = 1; // complete sell (off-chain) uint8 public constant OP_COMPLETE_BUY = 2; // complete buy (off-chain) uint8 public constant OP_BUY = 3; // create KIND_BUY uint8 public constant OP_ACCEPT_BUY = 4; // complete KIND_BUY uint8 public constant OP_CANCEL_BUY = 5; // cancel KIND_BUY uint8 public constant OP_REJECT_BUY = 6; // reject KIND_BUY uint8 public constant OP_BID = 7; // bid (create or update KIND_AUCTION) uint8 public constant OP_COMPLETE_AUCTION = 8; // complete auction (by anyone) uint8 public constant OP_ACCEPT_AUCTION = 9; // accept auction in an early stage (by seller) uint8 public constant OP_MAX = 10; uint8 public constant TOKEN_MINT = 0; // mint token (do anything) uint8 public constant TOKEN_721 = 1; // 721 token uint8 public constant TOKEN_1155 = 2; // 1155 token uint256 public constant RATE_BASE = 1e6; struct Pair721 { // swap only IERC721 token; uint256 tokenId; } struct TokenPair { address token; // token contract address uint256 tokenId; // token id (if applicable) uint256 amount; // token amount (if applicable) uint8 kind; // token kind (721/1151/mint) bytes mintData; // mint data (if applicable) } struct Inventory { address seller; address buyer; IERC20 currency; uint256 price; // display price uint256 netPrice; // actual price (auction: minus incentive) uint256 deadline; // deadline for the inventory uint8 kind; uint8 status; } struct Intention { address user; TokenPair[] bundle; IERC20 currency; uint256 price; uint256 deadline; bytes32 salt; uint8 kind; } struct Detail { bytes32 intentionHash; address signer; uint256 txDeadline; // deadline for the transaction bytes32 salt; uint256 id; // inventory id uint8 opcode; // OP_* address caller; IERC20 currency; uint256 price; uint256 incentiveRate; Settlement settlement; TokenPair[] bundle; uint256 deadline; // deadline for buy offer } struct Settlement { uint256[] coupons; uint256 feeRate; uint256 royaltyRate; uint256 buyerCashbackRate; address feeAddress; address royaltyAddress; } struct Swap { bytes32 salt; address creator; uint256 deadline; Pair721[] has; Pair721[] wants; } // events event EvCouponSpent(uint256 indexed id, uint256 indexed couponId); event EvInventoryUpdate(uint256 indexed id, Inventory inventory); event EvAuctionRefund(uint256 indexed id, address bidder, uint256 refund); event EvSettingsUpdated(); event EvMarketSignerUpdate(address addr, bool isRemoval); event EvSwapped(Swap req, bytes signature, address swapper); // vars IWETH public immutable weth; mapping(uint256 => Inventory) public inventories; mapping(uint256 => bool) public couponSpent; mapping(uint256 => mapping(uint256 => TokenPair)) public inventoryTokens; mapping(uint256 => uint256) public inventoryTokenCounts; mapping(address => bool) public marketSigners; // initialized with default value uint256 public minAuctionIncrement = (5 * RATE_BASE) / 100; uint256 public minAuctionDuration = 10 * 60; // internal vars bool internal _canReceive = false; // constructor constructor(IWETH weth_) { weth = weth_; } function updateSettings(uint256 minAuctionIncrement_, uint256 minAuctionDuration_) public onlyOwner { minAuctionDuration = minAuctionDuration_; minAuctionIncrement = minAuctionIncrement_; emit EvSettingsUpdated(); } function updateSigner(address addr, bool remove) public onlyOwner { if (remove) { delete marketSigners[addr]; } else { marketSigners[addr] = true; } emit EvMarketSignerUpdate(addr, remove); } // impls receive() external payable {} function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external view override _onTransferOnly returns (bytes4) { (operator); (from); (tokenId); (data); return this.onERC721Received.selector; } function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external view override _onTransferOnly returns (bytes4) { (operator); (from); (id); (value); (data); return this.onERC1155Received.selector; } function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external view override _onTransferOnly returns (bytes4) { (operator); (from); (ids); (values); (data); return this.onERC1155BatchReceived.selector; } modifier _onTransferOnly() { require(_canReceive, 'can not transfer token directly'); _; } modifier _allowTransfer() { _canReceive = true; _; _canReceive = false; } // public function supportsInterface(bytes4 interfaceId) external pure override returns (bool) { return (interfaceId == type(IERC721Receiver).interfaceId) || (interfaceId == type(IERC1155Receiver).interfaceId); } function run( Intention calldata intent, Detail calldata detail, bytes calldata sigIntent, bytes calldata sigDetail ) public payable nonReentrant whenNotPaused { require(detail.txDeadline > block.timestamp, 'transaction deadline reached'); require(marketSigners[detail.signer], 'unknown market signer'); _validateOpCode(detail.opcode); require( isSignatureValid(sigDetail, keccak256(abi.encode(detail)), detail.signer), 'offer signature error' ); if (hasSignedIntention(detail.opcode)) { bytes memory encodedInt = abi.encode(intent); require(keccak256(encodedInt) == detail.intentionHash, 'intention hash does not match'); require( isSignatureValid(sigIntent, keccak256(encodedInt), intent.user), 'intention signature error' ); } if (detail.opcode == OP_COMPLETE_SELL) { _assertSender(detail.caller); require(intent.kind == KIND_SELL, 'intent.kind should be KIND_SELL'); _newSellDeal( detail.id, intent.user, intent.bundle, intent.currency, intent.price, intent.deadline, detail.caller, detail.settlement ); } else if (detail.opcode == OP_COMPLETE_BUY) { _assertSender(detail.caller); require(intent.kind == KIND_BUY, 'intent.kind should be KIND_BUY'); _newBuyDeal( detail.id, intent.user, // buyer detail.caller, // seller intent.bundle, intent.currency, intent.price, intent.deadline, detail.settlement ); } else if (detail.opcode == OP_BUY) { _assertSender(detail.caller); _newBuy( detail.id, detail.caller, detail.currency, detail.price, detail.bundle, detail.deadline ); } else if (detail.opcode == OP_ACCEPT_BUY) { _assertSender(detail.caller); _acceptBuy(detail.id, detail.caller, detail.settlement); } else if (detail.opcode == OP_CANCEL_BUY) { _cancelBuyAnyway(detail.id); } else if (detail.opcode == OP_REJECT_BUY) { _rejectBuy(detail.id); } else if (detail.opcode == OP_BID) { _assertSender(detail.caller); require(intent.kind == KIND_AUCTION, 'intent.kind should be KIND_AUCTION'); _bid( detail.id, intent.user, intent.bundle, intent.currency, intent.price, intent.deadline, detail.caller, detail.price, detail.incentiveRate ); } else if (detail.opcode == OP_COMPLETE_AUCTION) { _completeAuction(detail.id, detail.settlement); } else if (detail.opcode == OP_ACCEPT_AUCTION) { _assertSender(detail.caller); require(detail.caller == intent.user, 'only seller can call'); _acceptAuction(detail.id, detail.settlement); } else { revert('impossible'); } } function cancelBuys(uint256[] calldata ids) public nonReentrant whenNotPaused { for (uint256 i = 0; i < ids.length; i++) { _cancelBuy(ids[i]); } } function inCaseMoneyGetsStuck(address to, IERC20 currency, uint256 amount) public onlyOwner { _transfer(currency, to, amount); } // emergency method for flaky contracts function emergencyCancelAuction(uint256 id, bool noBundle) public onlyOwner { require(isAuction(id), 'not auction'); require(isStatusOpen(id), 'not open'); Inventory storage inv = inventories[id]; if (!noBundle) { _transferBundle(id, address(this), inv.seller, false); } _transfer(inv.currency, inv.buyer, inv.netPrice); inv.status = STATUS_CANCELLED; emit EvInventoryUpdate(id, inv); } function swap(Swap memory req, bytes memory signature) public nonReentrant whenNotPaused { require(req.deadline > block.timestamp, 'deadline reached'); require( isSignatureValid(signature, keccak256(abi.encode(req)), req.creator), 'signature error' ); for (uint256 i = 0; i < req.wants.length; i++) { req.wants[i].token.safeTransferFrom(msg.sender, req.creator, req.wants[i].tokenId); } for (uint256 i = 0; i < req.has.length; i++) { req.has[i].token.safeTransferFrom(req.creator, msg.sender, req.has[i].tokenId); } emit EvSwapped(req, signature, msg.sender); } function send(address to, Pair721[] memory tokens) public nonReentrant whenNotPaused { for (uint256 i = 0; i < tokens.length; i++) { Pair721 memory p = tokens[i]; p.token.safeTransferFrom(msg.sender, to, p.tokenId); } } // internal function _assertSender(address sender) internal view { require(sender == msg.sender, 'wrong sender'); } function _validateOpCode(uint8 opCode) internal pure { require(opCode > OP_MIN && opCode < OP_MAX, 'invalid opcode'); } function _saveBundle(uint256 invId, TokenPair[] calldata bundle) internal { require(bundle.length > 0, 'empty bundle'); inventoryTokenCounts[invId] = bundle.length; for (uint256 i = 0; i < bundle.length; i++) { inventoryTokens[invId][i] = bundle[i]; } } // buyer create function _newBuy( uint256 id, address buyer, IERC20 currency, uint256 price, TokenPair[] calldata bundle, uint256 deadline ) internal { require(!hasInv(id), 'inventoryId already exists'); require(deadline > block.timestamp, 'deadline must be greater than now'); _saveBundle(id, bundle); if (_isNative(currency)) { require(price == msg.value, 'price == msg.value'); weth.deposit{value: price}(); // convert to erc20 (weth) } else { currency.safeTransferFrom(buyer, address(this), price); } inventories[id] = Inventory({ seller: address(0), buyer: buyer, currency: currency, price: price, netPrice: price, kind: KIND_BUY, status: STATUS_OPEN, deadline: deadline }); emit EvInventoryUpdate(id, inventories[id]); } // buyer cancel/expired function _cancelBuy(uint256 id) internal { Inventory storage inv = inventories[id]; require(inv.buyer == msg.sender || isExpired(id), 'caller is not buyer'); _cancelBuyAnyway(id); } // cancel without checking caller function _cancelBuyAnyway(uint256 id) internal { require(isBuy(id) && isStatusOpen(id), 'not open buy'); Inventory storage inv = inventories[id]; inv.status = STATUS_CANCELLED; _transfer(inv.currency, inv.buyer, inv.netPrice); emit EvInventoryUpdate(id, inventories[id]); } function _rejectBuy(uint256 id) internal { address caller = msg.sender; require(isBuy(id) && isStatusOpen(id), 'not open buy'); for (uint256 i = 0; i < inventoryTokenCounts[id]; i++) { TokenPair storage p = inventoryTokens[id][i]; if (p.kind == TOKEN_721) { IERC721 t = IERC721(p.token); require(t.ownerOf(p.tokenId) == caller, 'caller does not own token'); } else { revert('cannot reject non-721 token'); } } _cancelBuyAnyway(id); } // seller call function _acceptBuy( uint256 id, address seller, Settlement calldata settlement ) internal { require(isBuy(id), 'id does not exist'); Inventory storage inv = inventories[id]; require(isStatusOpen(id), 'not open'); require(isBundleApproved(id, seller), 'bundle not approved'); require(!isExpired(id), 'buy offer expired'); inv.status = STATUS_DONE; inv.seller = seller; _transferBundle(id, seller, inv.buyer, true); emit EvInventoryUpdate(id, inventories[id]); _completeTransaction(id, settlement); } function _newBuyDeal( uint256 id, address buyer, address seller, TokenPair[] calldata bundle, IERC20 currency, uint256 price, uint256 deadline, Settlement calldata settlement ) internal { require(!hasInv(id), 'inventory already exists'); require(deadline > block.timestamp, 'buy has already ended'); require(!_isNative(currency), 'cannot use native token'); _saveBundle(id, bundle); _transferBundle(id, seller, buyer, true); currency.safeTransferFrom(buyer, address(this), price); inventories[id] = Inventory({ seller: seller, buyer: buyer, currency: currency, price: price, netPrice: price, kind: KIND_BUY, status: STATUS_DONE, deadline: deadline }); emit EvInventoryUpdate(id, inventories[id]); _completeTransaction(id, settlement); } // new sell deal / new auction direct buy function _newSellDeal( uint256 id, address seller, TokenPair[] calldata bundle, IERC20 currency, uint256 price, uint256 deadline, address buyer, Settlement calldata settlement ) internal { require(!hasInv(id), 'duplicate id'); require(deadline > block.timestamp, 'sell has already ended'); _saveBundle(id, bundle); _transferBundle(id, seller, buyer, true); if (_isNative(currency)) { require(price == msg.value, 'price == msg.value'); weth.deposit{value: price}(); // convert to erc20 (weth) } else { currency.safeTransferFrom(buyer, address(this), price); } inventories[id] = Inventory({ seller: seller, buyer: buyer, currency: currency, price: price, netPrice: price, kind: KIND_SELL, status: STATUS_DONE, deadline: deadline }); emit EvInventoryUpdate(id, inventories[id]); _completeTransaction(id, settlement); } function _bid( uint256 id, address seller, TokenPair[] calldata bundle, IERC20 currency, uint256 startPrice, uint256 deadline, address buyer, uint256 price, uint256 incentiveRate ) internal _allowTransfer { require(incentiveRate < RATE_BASE, 'incentiveRate too large'); if (_isNative(currency)) { require(price == msg.value, 'price == msg.value'); weth.deposit{value: price}(); // convert to erc20 (weth) } else { currency.safeTransferFrom(buyer, address(this), price); } if (isAuction(id)) { Inventory storage auc = inventories[id]; require(auc.seller == seller, 'seller does not match'); // TODO check more require(auc.status == STATUS_OPEN, 'auction not open'); require(auc.deadline > block.timestamp, 'auction ended'); require( price >= auc.price + ((auc.price * minAuctionIncrement) / RATE_BASE), 'bid price too low' ); uint256 incentive = (price * incentiveRate) / RATE_BASE; _transfer(currency, auc.buyer, auc.netPrice + incentive); emit EvAuctionRefund(id, auc.buyer, auc.netPrice + incentive); auc.buyer = buyer; auc.price = price; auc.netPrice = price - incentive; if (block.timestamp + minAuctionDuration >= auc.deadline) { auc.deadline += minAuctionDuration; } } else { require(!hasInv(id), 'inventory is not auction'); require(price >= startPrice, 'bid lower than start price'); require(deadline > block.timestamp, 'auction ended'); uint256 deadline0 = deadline; if (block.timestamp + minAuctionDuration >= deadline) { deadline0 += minAuctionDuration; } inventories[id] = Inventory({ seller: seller, buyer: buyer, currency: currency, price: price, netPrice: price, deadline: deadline0, status: STATUS_OPEN, kind: KIND_AUCTION }); _saveBundle(id, bundle); _transferBundle(id, seller, address(this), false); } emit EvInventoryUpdate(id, inventories[id]); } function _completeAuction(uint256 id, Settlement calldata settlement) internal { require(inventories[id].deadline < block.timestamp, 'auction still going'); _acceptAuction(id, settlement); } function _acceptAuction(uint256 id, Settlement calldata settlement) internal { require(isAuction(id), 'auction does not exist'); require(isStatusOpen(id), 'auction not open'); Inventory storage auc = inventories[id]; auc.status = STATUS_DONE; emit EvInventoryUpdate(id, inventories[id]); _transferBundle(id, address(this), auc.buyer, true); _completeTransaction(id, settlement); } function _completeTransaction(uint256 id, Settlement calldata settlement) internal { Inventory storage inv = inventories[id]; require(hasInv(id) && inv.status == STATUS_DONE, 'no inventory or state error'); // sanity _markCoupon(id, settlement.coupons); uint256 price = inv.price; uint256 fee = (price * settlement.feeRate) / RATE_BASE; uint256 royalty = (price * settlement.royaltyRate) / RATE_BASE; uint256 buyerAmount = (price * settlement.buyerCashbackRate) / RATE_BASE; uint256 sellerAmount = inv.netPrice - fee - royalty - buyerAmount; _transfer(inv.currency, inv.seller, sellerAmount); _transfer(inv.currency, inv.buyer, buyerAmount); _transfer(inv.currency, settlement.feeAddress, fee); _transfer(inv.currency, settlement.royaltyAddress, royalty); } function _markCoupon(uint256 invId, uint256[] calldata coupons) internal { for (uint256 i = 0; i < coupons.length; i++) { uint256 id = coupons[i]; require(!couponSpent[id], 'coupon already spent'); couponSpent[id] = true; emit EvCouponSpent(invId, id); } } function _isNative(IERC20 currency) internal pure returns (bool) { return address(currency) == address(0); } function _transfer( IERC20 currency, address to, uint256 amount ) internal { if (amount == 0) { return; } require(to != address(0), 'cannot transfer to address(0)'); if (_isNative(currency)) { weth.withdraw(amount); payable(to).transfer(amount); } else { currency.safeTransfer(to, amount); } } function _transferBundle( uint256 invId, address from, address to, bool doMint ) internal { uint256 tokenCount = inventoryTokenCounts[invId]; for (uint256 i = 0; i < tokenCount; i++) { TokenPair storage p = inventoryTokens[invId][i]; if (p.kind == TOKEN_MINT) { if (doMint) { // sanity check require( to != address(0) && to != address(this), 'mint target cannot be zero or market' ); IMintable(p.token).mint(to, p.mintData); } } else if (p.kind == TOKEN_721) { IERC721(p.token).safeTransferFrom(from, to, p.tokenId); } else if (p.kind == TOKEN_1155) { IERC1155(p.token).safeTransferFrom(from, to, p.tokenId, p.amount, ''); } else { revert('unsupported token'); } } } // public helpers // also checks the right owner function isBundleApproved(uint256 invId, address owner) public view returns (bool) { require(hasInv(invId), 'no inventory'); for (uint256 i = 0; i < inventoryTokenCounts[invId]; i++) { TokenPair storage p = inventoryTokens[invId][i]; if (p.kind == TOKEN_MINT) { // pass } else if (p.kind == TOKEN_721) { IERC721 t = IERC721(p.token); if ( t.ownerOf(p.tokenId) == owner && (t.getApproved(p.tokenId) == address(this) || t.isApprovedForAll(owner, address(this))) ) { // pass } else { return false; } } else if (p.kind == TOKEN_1155) { IERC1155 t = IERC1155(p.token); if ( t.balanceOf(owner, p.tokenId) >= p.amount && t.isApprovedForAll(owner, address(this)) ) { // pass } else { return false; } } else { revert('unsupported token'); } } return true; } function isAuctionOpen(uint256 id) public view returns (bool) { return isAuction(id) && inventories[id].status == STATUS_OPEN && inventories[id].deadline > block.timestamp; } function isBuyOpen(uint256 id) public view returns (bool) { return isBuy(id) && inventories[id].status == STATUS_OPEN && inventories[id].deadline > block.timestamp; } function isAuction(uint256 id) public view returns (bool) { return inventories[id].kind == KIND_AUCTION; } function isBuy(uint256 id) public view returns (bool) { return inventories[id].kind == KIND_BUY; } function isSell(uint256 id) public view returns (bool) { return inventories[id].kind == KIND_SELL; } function hasInv(uint256 id) public view returns (bool) { return inventories[id].kind != 0; } function isStatusOpen(uint256 id) public view returns (bool) { return inventories[id].status == STATUS_OPEN; } function isExpired(uint256 id) public view returns (bool) { return block.timestamp >= inventories[id].deadline; } function isSignatureValid( bytes memory signature, bytes32 hash, address signer ) public pure returns (bool) { // verify hash signed via `personal_sign` return ECDSA.recover(ECDSA.toEthSignedMessageHash(hash), signature) == signer; } function hasSignedIntention(uint8 op) public pure returns (bool) { return op != OP_BUY && op != OP_CANCEL_BUY && op != OP_ACCEPT_BUY && op != OP_REJECT_BUY; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IWETH","name":"weth_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"refund","type":"uint256"}],"name":"EvAuctionRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"couponId","type":"uint256"}],"name":"EvCouponSpent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"components":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"contract IERC20","name":"currency","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"netPrice","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"},{"internalType":"uint8","name":"status","type":"uint8"}],"indexed":false,"internalType":"struct MarketNG.Inventory","name":"inventory","type":"tuple"}],"name":"EvInventoryUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"isRemoval","type":"bool"}],"name":"EvMarketSignerUpdate","type":"event"},{"anonymous":false,"inputs":[],"name":"EvSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"components":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct MarketNG.Pair721[]","name":"has","type":"tuple[]"},{"components":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct MarketNG.Pair721[]","name":"wants","type":"tuple[]"}],"indexed":false,"internalType":"struct MarketNG.Swap","name":"req","type":"tuple"},{"indexed":false,"internalType":"bytes","name":"signature","type":"bytes"},{"indexed":false,"internalType":"address","name":"swapper","type":"address"}],"name":"EvSwapped","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"KIND_AUCTION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KIND_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KIND_SELL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_ACCEPT_AUCTION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_ACCEPT_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_BID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_CANCEL_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_COMPLETE_AUCTION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_COMPLETE_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_COMPLETE_SELL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_MAX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_MIN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OP_REJECT_BUY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RATE_BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STATUS_CANCELLED","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STATUS_DONE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STATUS_OPEN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_1155","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_721","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"cancelBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"couponSpent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"noBundle","type":"bool"}],"name":"emergencyCancelAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"hasInv","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"op","type":"uint8"}],"name":"hasSignedIntention","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"contract IERC20","name":"currency","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"inCaseMoneyGetsStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"inventories","outputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"contract IERC20","name":"currency","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"netPrice","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"},{"internalType":"uint8","name":"status","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"inventoryTokenCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"inventoryTokens","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"},{"internalType":"bytes","name":"mintData","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isAuction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isAuctionOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"invId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"isBundleApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isBuyOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"address","name":"signer","type":"address"}],"name":"isSignatureValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isStatusOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketSigners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAuctionDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAuctionIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"},{"internalType":"bytes","name":"mintData","type":"bytes"}],"internalType":"struct MarketNG.TokenPair[]","name":"bundle","type":"tuple[]"},{"internalType":"contract IERC20","name":"currency","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint8","name":"kind","type":"uint8"}],"internalType":"struct MarketNG.Intention","name":"intent","type":"tuple"},{"components":[{"internalType":"bytes32","name":"intentionHash","type":"bytes32"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"txDeadline","type":"uint256"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint8","name":"opcode","type":"uint8"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"contract IERC20","name":"currency","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"incentiveRate","type":"uint256"},{"components":[{"internalType":"uint256[]","name":"coupons","type":"uint256[]"},{"internalType":"uint256","name":"feeRate","type":"uint256"},{"internalType":"uint256","name":"royaltyRate","type":"uint256"},{"internalType":"uint256","name":"buyerCashbackRate","type":"uint256"},{"internalType":"address","name":"feeAddress","type":"address"},{"internalType":"address","name":"royaltyAddress","type":"address"}],"internalType":"struct MarketNG.Settlement","name":"settlement","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"},{"internalType":"bytes","name":"mintData","type":"bytes"}],"internalType":"struct MarketNG.TokenPair[]","name":"bundle","type":"tuple[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct MarketNG.Detail","name":"detail","type":"tuple"},{"internalType":"bytes","name":"sigIntent","type":"bytes"},{"internalType":"bytes","name":"sigDetail","type":"bytes"}],"name":"run","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"components":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct MarketNG.Pair721[]","name":"tokens","type":"tuple[]"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"components":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct MarketNG.Pair721[]","name":"has","type":"tuple[]"},{"components":[{"internalType":"contract IERC721","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct MarketNG.Pair721[]","name":"wants","type":"tuple[]"}],"internalType":"struct MarketNG.Swap","name":"req","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minAuctionIncrement_","type":"uint256"},{"internalType":"uint256","name":"minAuctionDuration_","type":"uint256"}],"name":"updateSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052606462000016620f42406005620000e6565b62000022919062000114565b6007556102586008556009805460ff191690553480156200004257600080fd5b5060405162005ac538038062005ac5833981016040819052620000659162000137565b6001600055620000753362000094565b6001805460ff60a01b191690556001600160a01b031660805262000169565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008160001904831182151516156200010f57634e487b7160e01b600052601160045260246000fd5b500290565b6000826200013257634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200014a57600080fd5b81516001600160a01b03811681146200016257600080fd5b9392505050565b608051615924620001a160003960008181610509015281816123100152818161259101528181612b4c015261321d01526159246000f3fe6080604052600436106103055760003560e01c80638704f2a311610191578063c477be20116100e2578063ee98ce9111610090578063ee98ce911461091f578063f09541601461093f578063f0d250ba14610559578063f23a6e6114610954578063f2fde38b14610974578063f460590b14610994578063f4a33e0d146109b4578063f5116bc9146109d457600080fd5b8063c477be201461046d578063cd78ba01146107e8578063d9548e53146108ac578063e1784a0214610559578063e7d4a999146108df578063e91274f3146108ff578063eb374261146105f057600080fd5b8063afd76a0b1161013f578063afd76a0b14610724578063b4533aad14610744578063b50a2a5514610559578063ba84775914610775578063bc197c8114610788578063bdf52b45146107a8578063c1c30e80146107c857600080fd5b80638704f2a3146106845780638da5cb5b146106ba5780638f18439e1461046d57806390c2b10e146104585780639e57feb5146106cf578063a80d33fb146106e4578063ac5e2cb11461070457600080fd5b806354134876116102565780637234d8f2116102045780637234d8f2146105f0578063740db2801461046d578063781dc70a146106055780637ae1ace01461062557806380bc688f1461063a57806381787a851461065a5780638456cb591461066f578063853ca41a1461045857600080fd5b806354134876146105435780635a4e5a15146105595780635c975abb1461056e5780635fd34298146105835780636acc65db146105b0578063708d4d35146105c5578063715018a6146105db57600080fd5b80631bb03ca9116102b35780631bb03ca91461044357806324f8515b1461045857806325593ac21461046d5780632bcd27df146104825780633ed9ffb7146104b25780633f4ba83a146104e25780633fc8cef3146104f757600080fd5b8063015af8ee1461031157806301ffc9a7146103335780630873c6ec146103685780630ad486281461038d57806311f0794c146103ad578063150b7a02146103d45780631b01e72c1461040d57600080fd5b3661030c57005b600080fd5b34801561031d57600080fd5b5061033161032c3660046144b5565b6109f4565b005b34801561033f57600080fd5b5061035361034e3660046144d7565b610a63565b60405190151581526020015b60405180910390f35b34801561037457600080fd5b5061037f620f424081565b60405190815260200161035f565b34801561039957600080fd5b506103536103a8366004614501565b610a9a565b3480156103b957600080fd5b506103c2600481565b60405160ff909116815260200161035f565b3480156103e057600080fd5b506103f46103ef366004614580565b610af5565b6040516001600160e01b0319909116815260200161035f565b34801561041957600080fd5b50610353610428366004614501565b60009081526002602052604090206006015460ff1660011490565b34801561044f57600080fd5b506103c2600681565b34801561046457600080fd5b506103c2600081565b34801561047957600080fd5b506103c2600181565b34801561048e57600080fd5b5061035361049d3660046145f2565b60066020526000908152604090205460ff1681565b3480156104be57600080fd5b506103536104cd366004614501565b60036020526000908152604090205460ff1681565b3480156104ee57600080fd5b50610331610b2c565b34801561050357600080fd5b5061052b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161035f565b34801561054f57600080fd5b5061037f60085481565b34801561056557600080fd5b506103c2600281565b34801561057a57600080fd5b50610353610b65565b34801561058f57600080fd5b5061037f61059e366004614501565b60056020526000908152604090205481565b3480156105bc57600080fd5b506103c2600881565b3480156105d157600080fd5b5061037f60075481565b3480156105e757600080fd5b50610331610b75565b3480156105fc57600080fd5b506103c2600381565b34801561061157600080fd5b5061035361062036600461471b565b610bae565b34801561063157600080fd5b506103c2600981565b34801561064657600080fd5b50610331610655366004614775565b610c2e565b34801561066657600080fd5b506103c2600781565b34801561067b57600080fd5b50610331610c6d565b34801561069057600080fd5b5061035361069f366004614501565b60009081526002602052604090206006015460ff1660031490565b3480156106c657600080fd5b5061052b610ca4565b3480156106db57600080fd5b506103c2600581565b3480156106f057600080fd5b506103536106ff366004614501565b610cb3565b34801561071057600080fd5b5061035361071f3660046147d0565b610ccf565b34801561073057600080fd5b5061033161073f366004614899565b610d0e565b34801561075057600080fd5b5061076461075f3660046144b5565b610e0d565b60405161035f959493929190614940565b61033161078336600461498f565b610ede565b34801561079457600080fd5b506103f46107a3366004614a93565b611724565b3480156107b457600080fd5b506103536107c3366004614501565b61175e565b3480156107d457600080fd5b506103316107e3366004614b51565b611769565b3480156107f457600080fd5b5061085b610803366004614501565b600260208190526000918252604090912080546001820154928201546003830154600484015460058501546006909501546001600160a01b039485169685169593909416939192909160ff8082169161010090041688565b604080516001600160a01b03998a168152978916602089015295909716948601949094526060850192909252608084015260a083015260ff90811660c083015290911660e08201526101000161035f565b3480156108b857600080fd5b506103536108c7366004614501565b60009081526002602052604090206005015442101590565b3480156108eb57600080fd5b506103316108fa366004614ba0565b6117f4565b34801561090b57600080fd5b5061033161091a366004614bd0565b611932565b34801561092b57600080fd5b5061035361093a366004614501565b611c14565b34801561094b57600080fd5b506103c2600a81565b34801561096057600080fd5b506103f461096f366004614ca2565b611c32565b34801561098057600080fd5b5061033161098f3660046145f2565b611c6a565b3480156109a057600080fd5b506103316109af366004614d0b565b611d0a565b3480156109c057600080fd5b506103536109cf366004614d39565b611dcf565b3480156109e057600080fd5b506103536109ef366004614501565b612164565b336109fd610ca4565b6001600160a01b031614610a2c5760405162461bcd60e51b8152600401610a2390614d5e565b60405180910390fd5b600881905560078290556040517f6c06ac894de6b71964f14d152b6674a4465a9b5d3f9cf9f216b8e7ea6146751990600090a15050565b60006001600160e01b03198216630a85bd0160e11b1480610a9457506001600160e01b03198216630271189760e51b145b92915050565b60008181526002602052604081206006015460ff166003145b8015610ad65750600082815260026020526040902060060154610100900460ff16155b8015610a94575050600090815260026020526040902060050154421090565b60095460009060ff16610b1a5760405162461bcd60e51b8152600401610a2390614d93565b50630a85bd0160e11b95945050505050565b33610b35610ca4565b6001600160a01b031614610b5b5760405162461bcd60e51b8152600401610a2390614d5e565b610b6361217e565b565b600154600160a01b900460ff1690565b33610b7e610ca4565b6001600160a01b031614610ba45760405162461bcd60e51b8152600401610a2390614d5e565b610b636000612216565b6000816001600160a01b0316610c1a610c14856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b86612268565b6001600160a01b03161490505b9392505050565b33610c37610ca4565b6001600160a01b031614610c5d5760405162461bcd60e51b8152600401610a2390614d5e565b610c6882848361228c565b505050565b33610c76610ca4565b6001600160a01b031614610c9c5760405162461bcd60e51b8152600401610a2390614d5e565b610b636123c4565b6001546001600160a01b031690565b60009081526002602081905260409091206006015460ff161490565b600060ff8216600314801590610ce9575060ff8216600514155b8015610cf9575060ff8216600414155b8015610a94575060ff82166006141592915050565b60026000541415610d315760405162461bcd60e51b8152600401610a2390614dca565b6002600055610d3e610b65565b15610d5b5760405162461bcd60e51b8152600401610a2390614e01565b60005b8151811015610e03576000828281518110610d7b57610d7b614e2b565b6020026020010151905080600001516001600160a01b03166342842e0e338684602001516040518463ffffffff1660e01b8152600401610dbd93929190614e41565b600060405180830381600087803b158015610dd757600080fd5b505af1158015610deb573d6000803e3d6000fd5b50505050508080610dfb90614e7b565b915050610d5e565b5050600160005550565b60046020818152600093845260408085209091529183529120805460018201546002830154600384015494840180546001600160a01b03909416959294919360ff90931692610e5b90614e96565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8790614e96565b8015610ed45780601f10610ea957610100808354040283529160200191610ed4565b820191906000526020600020905b815481529060010190602001808311610eb757829003601f168201915b5050505050905085565b60026000541415610f015760405162461bcd60e51b8152600401610a2390614dca565b6002600055610f0e610b65565b15610f2b5760405162461bcd60e51b8152600401610a2390614e01565b42856040013511610f7e5760405162461bcd60e51b815260206004820152601c60248201527f7472616e73616374696f6e20646561646c696e652072656163686564000000006044820152606401610a23565b60066000610f9260408801602089016145f2565b6001600160a01b0316815260208101919091526040016000205460ff16610ff35760405162461bcd60e51b81526020600482015260156024820152743ab735b737bbb71036b0b935b2ba1039b4b3b732b960591b6044820152606401610a23565b61100b61100660c0870160a088016147d0565b612424565b61107e82828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505060405161105592508991506020016150e4565b6040516020818303038152906040528051906020012087602001602081019061062091906145f2565b6110c25760405162461bcd60e51b815260206004820152601560248201527437b33332b91039b4b3b730ba3ab9329032b93937b960591b6044820152606401610a23565b6110d561071f60c0870160a088016147d0565b156111f1576000866040516020016110ed91906151f2565b60408051601f19818403018152919052805160208201209091508635146111565760405162461bcd60e51b815260206004820152601d60248201527f696e74656e74696f6e206861736820646f6573206e6f74206d617463680000006044820152606401610a23565b6111a785858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508451602080870191909120925061062091508b018b6145f2565b6111ef5760405162461bcd60e51b815260206004820152601960248201527834b73a32b73a34b7b71039b4b3b730ba3ab9329032b93937b960391b6044820152606401610a23565b505b600161120360c0870160a088016147d0565b60ff1614156112ea5761122461121f60e0870160c088016145f2565b612476565b600161123660e0880160c089016147d0565b60ff16146112865760405162461bcd60e51b815260206004820152601f60248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f53454c4c006044820152606401610a23565b6112e5608086013561129b60208901896145f2565b6112a860208a018a615291565b6112b860608c0160408d016145f2565b60608c013560808d01356112d260e08e0160c08f016145f2565b6112e06101408f018f6152da565b6124bd565b611717565b60026112fc60c0870160a088016147d0565b60ff1614156113d95761131861121f60e0870160c088016145f2565b600261132a60e0880160c089016147d0565b60ff161461137a5760405162461bcd60e51b815260206004820152601e60248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f42555900006044820152606401610a23565b6112e5608086013561138f60208901896145f2565b61139f60e0890160c08a016145f2565b6113ac60208b018b615291565b6113bc60608d0160408e016145f2565b60608d013560808e01356113d46101408f018f6152da565b6127c4565b60036113eb60c0870160a088016147d0565b60ff16141561144f5761140761121f60e0870160c088016145f2565b6112e5608086013561141f60e0880160c089016145f2565b611430610100890160e08a016145f2565b6101008901356114446101608b018b615291565b8b6101800135612a63565b600461146160c0870160a088016147d0565b60ff1614156114a85761147d61121f60e0870160c088016145f2565b6112e5608086013561149560e0880160c089016145f2565b6114a36101408901896152da565b612d74565b60056114ba60c0870160a088016147d0565b60ff1614156114d0576112e58560800135612f19565b60066114e260c0870160a088016147d0565b60ff1614156114f8576112e58560800135612fd1565b600761150a60c0870160a088016147d0565b60ff1614156115f05761152661121f60e0870160c088016145f2565b600361153860e0880160c089016147d0565b60ff16146115935760405162461bcd60e51b815260206004820152602260248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f415543544960448201526127a760f11b6064820152608401610a23565b6112e560808601356115a860208901896145f2565b6115b560208a018a615291565b6115c560608c0160408d016145f2565b60608c013560808d01356115df60e08e0160c08f016145f2565b8d61010001358e6101200135613195565b600861160260c0870160a088016147d0565b60ff161415611626576112e560808601356116216101408801886152da565b6137a5565b600961163860c0870160a088016147d0565b60ff1614156116e25761165461121f60e0870160c088016145f2565b61166160208701876145f2565b6001600160a01b031661167a60e0870160c088016145f2565b6001600160a01b0316146116c75760405162461bcd60e51b81526020600482015260146024820152731bdb9b1e481cd95b1b195c8818d85b8818d85b1b60621b6044820152606401610a23565b6112e560808601356116dd6101408801886152da565b613801565b60405162461bcd60e51b815260206004820152600a602482015269696d706f737369626c6560b01b6044820152606401610a23565b5050600160005550505050565b60095460009060ff166117495760405162461bcd60e51b8152600401610a2390614d93565b5063bc197c8160e01b98975050505050505050565b6000610ab382610cb3565b6002600054141561178c5760405162461bcd60e51b8152600401610a2390614dca565b6002600055611799610b65565b156117b65760405162461bcd60e51b8152600401610a2390614e01565b60005b81811015610e03576117e28383838181106117d6576117d6614e2b565b905060200201356138fb565b806117ec81614e7b565b9150506117b9565b336117fd610ca4565b6001600160a01b0316146118235760405162461bcd60e51b8152600401610a2390614d5e565b6118428260009081526002602052604090206006015460ff1660031490565b61187c5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1030bab1ba34b7b760a91b6044820152606401610a23565b61188582611c14565b6118a15760405162461bcd60e51b8152600401610a23906152fa565b6000828152600260205260409020816118ce5780546118ce90849030906001600160a01b03166000613980565b6002810154600182015460048301546118f4926001600160a01b0390811692169061228c565b60068101805461ff00191661020017905560405183906000805160206158cf833981519152906119259084906153a9565b60405180910390a2505050565b600260005414156119555760405162461bcd60e51b8152600401610a2390614dca565b6002600055611962610b65565b1561197f5760405162461bcd60e51b8152600401610a2390614e01565b428260400151116119c55760405162461bcd60e51b815260206004820152601060248201526f191958591b1a5b99481c995858da195960821b6044820152606401610a23565b6119fa81836040516020016119da9190615464565b604051602081830303815290604052805190602001208460200151610bae565b611a385760405162461bcd60e51b815260206004820152600f60248201526e39b4b3b730ba3ab9329032b93937b960891b6044820152606401610a23565b60005b826080015151811015611b035782608001518181518110611a5e57611a5e614e2b565b6020026020010151600001516001600160a01b03166342842e0e33856020015186608001518581518110611a9457611a94614e2b565b6020026020010151602001516040518463ffffffff1660e01b8152600401611abe93929190614e41565b600060405180830381600087803b158015611ad857600080fd5b505af1158015611aec573d6000803e3d6000fd5b505050508080611afb90614e7b565b915050611a3b565b5060005b826060015151811015611bcf5782606001518181518110611b2a57611b2a614e2b565b6020026020010151600001516001600160a01b03166342842e0e84602001513386606001518581518110611b6057611b60614e2b565b6020026020010151602001516040518463ffffffff1660e01b8152600401611b8a93929190614e41565b600060405180830381600087803b158015611ba457600080fd5b505af1158015611bb8573d6000803e3d6000fd5b505050508080611bc790614e7b565b915050611b07565b507f92060d15ec9a14885865b744d2efb1fff3cab53411058a530f51d480288a864c828233604051611c0393929190615477565b60405180910390a150506001600055565b600090815260026020526040902060060154610100900460ff161590565b60095460009060ff16611c575760405162461bcd60e51b8152600401610a2390614d93565b5063f23a6e6160e01b9695505050505050565b33611c73610ca4565b6001600160a01b031614611c995760405162461bcd60e51b8152600401610a2390614d5e565b6001600160a01b038116611cfe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b611d0781612216565b50565b33611d13610ca4565b6001600160a01b031614611d395760405162461bcd60e51b8152600401610a2390614d5e565b8015611d64576001600160a01b0382166000908152600660205260409020805460ff19169055611d88565b6001600160a01b0382166000908152600660205260409020805460ff191660011790555b604080516001600160a01b038416815282151560208201527f90d56af4745c314d9b45054b55dc973378c558c1ad1554bccc70d39aa63a2cc5910160405180910390a15050565b6000611dda83612164565b611e155760405162461bcd60e51b815260206004820152600c60248201526b6e6f20696e76656e746f727960a01b6044820152606401610a23565b60005b60008481526005602052604090205481101561215a5760008481526004602090815260408083208484529091529020600381015460ff16611e5857612147565b600381015460ff166001141561203557805460018201546040516331a9108f60e11b81526001600160a01b03928316928716918391636352211e91611ea39160040190815260200190565b60206040518083038186803b158015611ebb57600080fd5b505afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef391906154b5565b6001600160a01b03161480156120195750600182015460405163020604bf60e21b815230916001600160a01b0384169163081812fc91611f399160040190815260200190565b60206040518083038186803b158015611f5157600080fd5b505afa158015611f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8991906154b5565b6001600160a01b03161480612019575060405163e985e9c560e01b81526001600160a01b03868116600483015230602483015282169063e985e9c5906044015b60206040518083038186803b158015611fe157600080fd5b505afa158015611ff5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201991906154d2565b156120235761202f565b60009350505050610a94565b50612147565b600381015460ff166002141561210b57805460028201546001830154604051627eeac760e11b81526001600160a01b0390931692839162fdd58e9161207e918a916004016154ef565b60206040518083038186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ce9190615508565b10158015612019575060405163e985e9c560e01b81526001600160a01b03868116600483015230602483015282169063e985e9c590604401611fc9565b60405162461bcd60e51b81526020600482015260116024820152703ab739bab83837b93a32b2103a37b5b2b760791b6044820152606401610a23565b508061215281614e7b565b915050611e18565b5060019392505050565b60009081526002602052604090206006015460ff16151590565b612186610b65565b6121c95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a23565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006122778585613b79565b9150915061228481613be9565b509392505050565b8061229657505050565b6001600160a01b0382166122ec5760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f74207472616e7366657220746f20616464726573732830290000006044820152606401610a23565b6001600160a01b0383166123b057604051632e1a7d4d60e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561235c57600080fd5b505af1158015612370573d6000803e3d6000fd5b50506040516001600160a01b038516925083156108fc02915083906000818181858888f193505050501580156123aa573d6000803e3d6000fd5b50505050565b610c686001600160a01b0384168383613d9f565b6123cc610b65565b156123e95760405162461bcd60e51b8152600401610a2390614e01565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121f93390565b60ff8116158015906124395750600a60ff8216105b611d075760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964206f70636f646560901b6044820152606401610a23565b6001600160a01b0381163314611d075760405162461bcd60e51b815260206004820152600c60248201526b3bb937b7339039b2b73232b960a11b6044820152606401610a23565b6124c689612164565b156125025760405162461bcd60e51b815260206004820152600c60248201526b191d5c1b1a58d85d19481a5960a21b6044820152606401610a23565b42831161254a5760405162461bcd60e51b81526020600482015260166024820152751cd95b1b081a185cc8185b1c9958591e48195b99195960521b6044820152606401610a23565b612555898888613df5565b6125628989846001613980565b6001600160a01b0385166126085734841461258f5760405162461bcd60e51b8152600401610a2390615521565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156125ea57600080fd5b505af11580156125fe573d6000803e3d6000fd5b505050505061261d565b61261d6001600160a01b038616833087613ea7565b604051806101000160405280896001600160a01b03168152602001836001600160a01b03168152602001866001600160a01b03168152602001858152602001858152602001848152602001600160ff168152602001600160ff16815250600260008b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050886000805160206158cf833981519152600260008c81526020019081526020016000206040516127a791906153a9565b60405180910390a26127b98982613ec8565b505050505050505050565b6127cd89612164565b156128155760405162461bcd60e51b8152602060048201526018602482015277696e76656e746f727920616c72656164792065786973747360401b6044820152606401610a23565b42821161285c5760405162461bcd60e51b8152602060048201526015602482015274189d5e481a185cc8185b1c9958591e48195b991959605a1b6044820152606401610a23565b6001600160a01b0384166128ac5760405162461bcd60e51b815260206004820152601760248201527631b0b73737ba103ab9b2903730ba34bb32903a37b5b2b760491b6044820152606401610a23565b6128b7898787613df5565b6128c489888a6001613980565b6128d96001600160a01b038516893086613ea7565b604051806101000160405280886001600160a01b03168152602001896001600160a01b03168152602001856001600160a01b03168152602001848152602001848152602001838152602001600260ff168152602001600160ff16815250600260008b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050886000805160206158cf833981519152600260008c81526020019081526020016000206040516127a791906153a9565b612a6c87612164565b15612ab95760405162461bcd60e51b815260206004820152601a60248201527f696e76656e746f7279496420616c7265616479206578697374730000000000006044820152606401610a23565b428111612b125760405162461bcd60e51b815260206004820152602160248201527f646561646c696e65206d7573742062652067726561746572207468616e206e6f6044820152607760f81b6064820152608401610a23565b612b1d878484613df5565b6001600160a01b038516612bc357348414612b4a5760405162461bcd60e51b8152600401610a2390615521565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b158015612ba557600080fd5b505af1158015612bb9573d6000803e3d6000fd5b5050505050612bd8565b612bd86001600160a01b038616873087613ea7565b60405180610100016040528060006001600160a01b03168152602001876001600160a01b03168152602001866001600160a01b03168152602001858152602001858152602001828152602001600260ff168152602001600060ff168152506002600089815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050866000805160206158cf833981519152600260008a8152602001908152602001600020604051612d6391906153a9565b60405180910390a250505050505050565b612d7d83610cb3565b612dbd5760405162461bcd60e51b81526020600482015260116024820152701a5908191bd95cc81b9bdd08195e1a5cdd607a1b6044820152606401610a23565b6000838152600260205260409020612dd484611c14565b612df05760405162461bcd60e51b8152600401610a23906152fa565b612dfa8484611dcf565b612e3c5760405162461bcd60e51b8152602060048201526013602482015272189d5b991b19481b9bdd08185c1c1c9bdd9959606a1b6044820152606401610a23565b6000848152600260205260409020600501544210612e905760405162461bcd60e51b8152602060048201526011602482015270189d5e481bd999995c88195e1c1a5c9959607a1b6044820152606401610a23565b60068101805461ff00191661010017905580546001600160a01b038085166001600160a01b0319909216919091178255600182810154612ed7928792879290911690613980565b836000805160206158cf83398151915260026000878152602001908152602001600020604051612f0791906153a9565b60405180910390a26123aa8483613ec8565b612f2281610cb3565b8015612f325750612f3281611c14565b612f4e5760405162461bcd60e51b8152600401610a239061554d565b600081815260026020819052604090912060068101805461ff0019166102001790559081015460018201546004830154612f95926001600160a01b0390811692169061228c565b816000805160206158cf83398151915260026000858152602001908152602001600020604051612fc591906153a9565b60405180910390a25050565b33612fdb82610cb3565b8015612feb5750612feb82611c14565b6130075760405162461bcd60e51b8152600401610a239061554d565b60005b6000838152600560205260409020548110156131875760008381526004602090815260408083208484529091529020600381015460ff166001141561312c57805460018201546040516331a9108f60e11b81526001600160a01b03928316928616918391636352211e916130849160040190815260200190565b60206040518083038186803b15801561309c57600080fd5b505afa1580156130b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d491906154b5565b6001600160a01b0316146131265760405162461bcd60e51b815260206004820152601960248201527831b0b63632b9103237b2b9903737ba1037bbb7103a37b5b2b760391b6044820152606401610a23565b50613174565b60405162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742072656a656374206e6f6e2d37323120746f6b656e00000000006044820152606401610a23565b508061317f81614e7b565b91505061300a565b5061319182612f19565b5050565b6009805460ff19166001179055620f424081106131ee5760405162461bcd60e51b8152602060048201526017602482015276696e63656e746976655261746520746f6f206c6172676560481b6044820152606401610a23565b6001600160a01b0386166132945734821461321b5760405162461bcd60e51b8152600401610a2390615521565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561327657600080fd5b505af115801561328a573d6000803e3d6000fd5b50505050506132a9565b6132a96001600160a01b038716843085613ea7565b6132c88a60009081526002602052604090206006015460ff1660031490565b156134fd5760008a815260026020526040902080546001600160a01b038b811691161461332f5760405162461bcd60e51b81526020600482015260156024820152740e6cad8d8cae440c8decae640dcdee840dac2e8c6d605b1b6044820152606401610a23565b6006810154610100900460ff16156133595760405162461bcd60e51b8152600401610a2390615573565b4281600501541161337c5760405162461bcd60e51b8152600401610a239061559d565b620f4240600754826003015461339291906155c4565b61339c91906155e3565b81600301546133ab9190615605565b8310156133ee5760405162461bcd60e51b815260206004820152601160248201527062696420707269636520746f6f206c6f7760781b6044820152606401610a23565b6000620f42406133fe84866155c4565b61340891906155e3565b60018301546004840154919250613435918a916001600160a01b031690613430908590615605565b61228c565b600182015460048301548d917fa48bcf3362c21033397c03b92fb367d1962ba13b5bde0dfe491f9d88abb59e3f916001600160a01b039091169061347a908590615605565b6040516134889291906154ef565b60405180910390a26001820180546001600160a01b0319166001600160a01b038716179055600382018490556134be818561561d565b600483015560058201546008546134d59042615605565b106134f6576008548260050160008282546134f09190615605565b90915550505b5050613757565b6135068a612164565b1561354e5760405162461bcd60e51b815260206004820152601860248201527734b73b32b73a37b93c9034b9903737ba1030bab1ba34b7b760411b6044820152606401610a23565b8482101561359e5760405162461bcd60e51b815260206004820152601a60248201527f626964206c6f776572207468616e2073746172742070726963650000000000006044820152606401610a23565b4284116135bd5760405162461bcd60e51b8152600401610a239061559d565b600854849081906135ce9042615605565b106135e3576008546135e09082615605565b90505b6040518061010001604052808b6001600160a01b03168152602001856001600160a01b03168152602001886001600160a01b03168152602001848152602001848152602001828152602001600360ff168152602001600060ff16815250600260008d815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff1602179055509050506137488b8a8a613df5565b6137558b8b306000613980565b505b896000805160206158cf833981519152600260008d815260200190815260200160002060405161378791906153a9565b60405180910390a250506009805460ff191690555050505050505050565b60008281526002602052604090206005015442116137fb5760405162461bcd60e51b815260206004820152601360248201527261756374696f6e207374696c6c20676f696e6760681b6044820152606401610a23565b61319182825b6138208260009081526002602052604090206006015460ff1660031490565b6138655760405162461bcd60e51b8152602060048201526016602482015275185d58dd1a5bdb88191bd95cc81b9bdd08195e1a5cdd60521b6044820152606401610a23565b61386e82611c14565b61388a5760405162461bcd60e51b8152600401610a2390615573565b6000828152600260205260409081902060068101805461ff001916610100179055905183906000805160206158cf833981519152906138ca9084906153a9565b60405180910390a26001808201546138f191859130916001600160a01b0390911690613980565b610c688383613ec8565b600081815260026020526040902060018101546001600160a01b031633148061393557506000828152600260205260409020600501544210155b6139775760405162461bcd60e51b815260206004820152601360248201527231b0b63632b91034b9903737ba10313abcb2b960691b6044820152606401610a23565b61319182612f19565b600084815260056020526040812054905b81811015613b715760008681526004602090815260408083208484529091529020600381015460ff16613aa8578315613aa3576001600160a01b038516158015906139e557506001600160a01b0385163014155b613a3d5760405162461bcd60e51b8152602060048201526024808201527f6d696e74207461726765742063616e6e6f74206265207a65726f206f72206d616044820152631c9ad95d60e21b6064820152608401610a23565b805460405163b510391f60e01b81526001600160a01b039091169063b510391f90613a7090889060048087019101615634565b600060405180830381600087803b158015613a8a57600080fd5b505af1158015613a9e573d6000803e3d6000fd5b505050505b613b5e565b600381015460ff1660011415613aee5780546001820154604051632142170760e11b81526001600160a01b03909216916342842e0e91613a70918a918a91600401614e41565b600381015460ff166002141561210b57805460018201546002830154604051637921219560e11b81526001600160a01b038a8116600483015289811660248301526044820193909352606481019190915260a06084820152600060a482015291169063f242432a9060c401613a70565b5080613b6981614e7b565b915050613991565b505050505050565b600080825160411415613bb05760208301516040840151606085015160001a613ba48782858561407f565b94509450505050613be2565b825160401415613bda5760208301516040840151613bcf868383614162565b935093505050613be2565b506000905060025b9250929050565b6000816004811115613bfd57613bfd6156c9565b1415613c065750565b6001816004811115613c1a57613c1a6156c9565b1415613c635760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610a23565b6002816004811115613c7757613c776156c9565b1415613cc55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a23565b6003816004811115613cd957613cd96156c9565b1415613d325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a23565b6004816004811115613d4657613d466156c9565b1415611d075760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a23565b610c688363a9059cbb60e01b8484604051602401613dbe9291906154ef565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614191565b80613e315760405162461bcd60e51b815260206004820152600c60248201526b656d7074792062756e646c6560a01b6044820152606401610a23565b60008381526005602052604081208290555b818110156123aa57828282818110613e5d57613e5d614e2b565b9050602002810190613e6f91906156df565b60008581526004602090815260408083208584529091529020613e9282826157fb565b50819050613e9f81614e7b565b915050613e43565b6123aa846323b872dd60e01b858585604051602401613dbe93929190614e41565b6000828152600260205260409020613edf83612164565b8015613ef757506006810154610100900460ff166001145b613f435760405162461bcd60e51b815260206004820152601b60248201527f6e6f20696e76656e746f7279206f72207374617465206572726f7200000000006044820152606401610a23565b613f5683613f518480615291565b614263565b60038101546000620f4240613f6f6020860135846155c4565b613f7991906155e3565b90506000620f4240613f8f6040870135856155c4565b613f9991906155e3565b90506000620f4240613faf6060880135866155c4565b613fb991906155e3565b905060008183858860040154613fcf919061561d565b613fd9919061561d565b613fe3919061561d565b60028701548754919250614004916001600160a01b0391821691168361228c565b60028601546001870154614025916001600160a01b0390811691168461228c565b600286015461404d906001600160a01b031661404760a08a0160808b016145f2565b8661228c565b6002860154614075906001600160a01b031661406f60c08a0160a08b016145f2565b8561228c565b5050505050505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156140ac5750600090506003614159565b8460ff16601b141580156140c457508460ff16601c14155b156140d55750600090506004614159565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614129573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661415257600060019250925050614159565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016141838782888561407f565b935093505050935093915050565b60006141e6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661433d9092919063ffffffff16565b805190915015610c68578080602001905181019061420491906154d2565b610c685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a23565b60005b818110156123aa57600083838381811061428257614282614e2b565b60209081029290920135600081815260039093526040909220549192505060ff16156142e75760405162461bcd60e51b815260206004820152601460248201527318dbdd5c1bdb88185b1c9958591e481cdc195b9d60621b6044820152606401610a23565b600081815260036020526040808220805460ff1916600117905551829187917f6aa71aa6b7aa6036ace4e4ceefbab7d89c4afb7fcfa1a3680499d7b37d32c82f9190a3508061433581614e7b565b915050614266565b606061434c8484600085614354565b949350505050565b6060824710156143b55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a23565b843b6144035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a23565b600080866001600160a01b0316858760405161441f91906158a9565b60006040518083038185875af1925050503d806000811461445c576040519150601f19603f3d011682016040523d82523d6000602084013e614461565b606091505b509150915061447182828661447c565b979650505050505050565b6060831561448b575081610c27565b82511561449b5782518084602001fd5b8160405162461bcd60e51b8152600401610a2391906158bb565b600080604083850312156144c857600080fd5b50508035926020909101359150565b6000602082840312156144e957600080fd5b81356001600160e01b031981168114610c2757600080fd5b60006020828403121561451357600080fd5b5035919050565b6001600160a01b0381168114611d0757600080fd5b803561453a8161451a565b919050565b60008083601f84011261455157600080fd5b5081356001600160401b0381111561456857600080fd5b602083019150836020828501011115613be257600080fd5b60008060008060006080868803121561459857600080fd5b85356145a38161451a565b945060208601356145b38161451a565b93506040860135925060608601356001600160401b038111156145d557600080fd5b6145e18882890161453f565b969995985093965092949392505050565b60006020828403121561460457600080fd5b8135610c278161451a565b6001600160a01b03169052565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156146545761465461461c565b60405290565b60405160a081016001600160401b03811182821017156146545761465461461c565b604051601f8201601f191681016001600160401b03811182821017156146a4576146a461461c565b604052919050565b600082601f8301126146bd57600080fd5b81356001600160401b038111156146d6576146d661461c565b6146e9601f8201601f191660200161467c565b8181528460208386010111156146fe57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561473057600080fd5b83356001600160401b0381111561474657600080fd5b614752868287016146ac565b93505060208401359150604084013561476a8161451a565b809150509250925092565b60008060006060848603121561478a57600080fd5b83356147958161451a565b925060208401356147a58161451a565b929592945050506040919091013590565b60ff81168114611d0757600080fd5b803561453a816147b6565b6000602082840312156147e257600080fd5b8135610c27816147b6565b600082601f8301126147fe57600080fd5b813560206001600160401b038211156148195761481961461c565b614827818360051b0161467c565b82815260069290921b8401810191818101908684111561484657600080fd5b8286015b8481101561488e57604081890312156148635760008081fd5b61486b614632565b81356148768161451a565b8152818501358582015283529183019160400161484a565b509695505050505050565b600080604083850312156148ac57600080fd5b82356148b78161451a565b915060208301356001600160401b038111156148d257600080fd5b6148de858286016147ed565b9150509250929050565b60005b838110156149035781810151838201526020016148eb565b838111156123aa5750506000910152565b6000815180845261492c8160208601602086016148e8565b601f01601f19169290920160200192915050565b60018060a01b038616815284602082015283604082015260ff8316606082015260a06080820152600061447160a0830184614914565b60006101a0828403121561498957600080fd5b50919050565b600080600080600080608087890312156149a857600080fd5b86356001600160401b03808211156149bf57600080fd5b9088019060e0828b0312156149d357600080fd5b909650602088013590808211156149e957600080fd5b6149f58a838b01614976565b96506040890135915080821115614a0b57600080fd5b614a178a838b0161453f565b90965094506060890135915080821115614a3057600080fd5b50614a3d89828a0161453f565b979a9699509497509295939492505050565b60008083601f840112614a6157600080fd5b5081356001600160401b03811115614a7857600080fd5b6020830191508360208260051b8501011115613be257600080fd5b60008060008060008060008060a0898b031215614aaf57600080fd5b8835614aba8161451a565b97506020890135614aca8161451a565b965060408901356001600160401b0380821115614ae657600080fd5b614af28c838d01614a4f565b909850965060608b0135915080821115614b0b57600080fd5b614b178c838d01614a4f565b909650945060808b0135915080821115614b3057600080fd5b50614b3d8b828c0161453f565b999c989b5096995094979396929594505050565b60008060208385031215614b6457600080fd5b82356001600160401b03811115614b7a57600080fd5b614b8685828601614a4f565b90969095509350505050565b8015158114611d0757600080fd5b60008060408385031215614bb357600080fd5b823591506020830135614bc581614b92565b809150509250929050565b60008060408385031215614be357600080fd5b82356001600160401b0380821115614bfa57600080fd5b9084019060a08287031215614c0e57600080fd5b614c1661465a565b823581526020830135614c288161451a565b602082015260408381013590820152606083013582811115614c4957600080fd5b614c55888286016147ed565b606083015250608083013582811115614c6d57600080fd5b614c79888286016147ed565b60808301525093506020850135915080821115614c9557600080fd5b506148de858286016146ac565b60008060008060008060a08789031215614cbb57600080fd5b8635614cc68161451a565b95506020870135614cd68161451a565b9450604087013593506060870135925060808701356001600160401b03811115614cff57600080fd5b614a3d89828a0161453f565b60008060408385031215614d1e57600080fd5b8235614d298161451a565b91506020830135614bc581614b92565b60008060408385031215614d4c57600080fd5b823591506020830135614bc58161451a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f63616e206e6f74207472616e7366657220746f6b656e206469726563746c7900604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415614e8f57614e8f614e65565b5060010190565b600181811c90821680614eaa57607f821691505b6020821081141561498957634e487b7160e01b600052602260045260246000fd5b6000823560be19833603018112614ee157600080fd5b90910192915050565b6000808335601e19843603018112614f0157600080fd5b83016020810192503590506001600160401b03811115614f2057600080fd5b8060051b3603831315613be257600080fd5b6000614f3e8283614eea565b60c080865285018190526001600160fb1b03811115614f5c57600080fd5b60051b808260e087013760e081860101915050600081526020830135602085015260408301356040850152606083013560608501526080830135614f9f8161451a565b6001600160a01b03166080850152614fb960a0840161452f565b61228460a086018261460f565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b81835260006020808501808196508560051b810191508460005b878110156150d75782840389528135609e1988360301811261502a57600080fd5b870160a081356150398161451a565b6001600160a01b03168652818701358787015260408083013590870152606080830135615065816147b6565b60ff169087015260808281013536849003601e1901811261508557600080fd5b830180356001600160401b0381111561509d57600080fd5b8036038513156150ac57600080fd5b83838a01526150c0848a01828c8501614fc6565b9d8a019d9850505093870193505050600101615009565b5091979650505050505050565b602081528135602082015260006150fd6020840161452f565b61510a604084018261460f565b506040830135606083015260608301356080830152608083013560a083015261513560a084016147c5565b60ff811660c08401525061514b60c0840161452f565b61515860e084018261460f565b5061516560e0840161452f565b6101006151748185018361460f565b6101209150808501358285015250610140818501358185015261519981860186614ecb565b9150506101a061016081818601526151b56101c0860184614f32565b92506151c381870187614eea565b9150610180601f1987860301818801526151de858484614fef565b970135959092019490945250929392505050565b60208152600082356152038161451a565b60018060a01b03808216602085015261521f6020860186614eea565b925060e0604086015261523761010086018483614fef565b92505060408501356152488161451a565b8181166060860152505060608401356080840152608084013560a084015260a084013560c084015260c084013561527e816147b6565b60ff1660e0939093019290925250919050565b6000808335601e198436030181126152a857600080fd5b8301803591506001600160401b038211156152c257600080fd5b6020019150600581901b3603821315613be257600080fd5b6000823560be198336030181126152f057600080fd5b9190910192915050565b6020808252600890820152673737ba1037b832b760c11b604082015260600190565b6153368261533183546001600160a01b031690565b61460f565b60018101546001600160a01b0316615351602084018261460f565b5060028101546001600160a01b031661536d604084018261460f565b506003810154606083015260048101546080830152600581015460a08301526006015460ff80821660c084015260089190911c1660e090910152565b6101008101610a94828461531c565b600081518084526020808501945080840160005b838110156153fc57815180516001600160a01b0316885283015183880152604090960195908201906001016153cc565b509495945050505050565b8051825260018060a01b036020820151166020830152604081015160408301526000606082015160a0606085015261544260a08501826153b8565b90506080830151848203608086015261545b82826153b8565b95945050505050565b602081526000610c276020830184615407565b60608152600061548a6060830186615407565b828103602084015261549c8186614914565b91505060018060a01b0383166040830152949350505050565b6000602082840312156154c757600080fd5b8151610c278161451a565b6000602082840312156154e457600080fd5b8151610c2781614b92565b6001600160a01b03929092168252602082015260400190565b60006020828403121561551a57600080fd5b5051919050565b6020808252601290820152717072696365203d3d206d73672e76616c756560701b604082015260600190565b6020808252600c908201526b6e6f74206f70656e2062757960a01b604082015260600190565b60208082526010908201526f30bab1ba34b7b7103737ba1037b832b760811b604082015260600190565b6020808252600d908201526c185d58dd1a5bdb88195b991959609a1b604082015260600190565b60008160001904831182151516156155de576155de614e65565b500290565b60008261560057634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561561857615618614e65565b500190565b60008282101561562f5761562f614e65565b500390565b60018060a01b0383168152600060206040818401526000845461565681614e96565b8060408701526060600180841660008114615678576001811461568c576156ba565b60ff198516898401526080890195506156ba565b896000528660002060005b858110156156b25781548b8201860152908301908801615697565b8a0184019650505b50939998505050505050505050565b634e487b7160e01b600052602160045260246000fd5b60008235609e198336030181126152f057600080fd5b601f821115610c6857600081815260208120601f850160051c8101602086101561571c5750805b601f850160051c820191505b81811015613b7157828155600101615728565b6001600160401b038311156157525761575261461c565b615766836157608354614e96565b836156f5565b6000601f84116001811461579a57600085156157825750838201355b600019600387901b1c1916600186901b1783556157f4565b600083815260209020601f19861690835b828110156157cb57868501358255602094850194600190920191016157ab565b50868210156157e85760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b81356158068161451a565b81546001600160a01b0319166001600160a01b03919091161781556020820135600182015560408201356002820155600381016060830135615847816147b6565b815460ff191660ff91909116179055608082013536839003601e1901811261586e57600080fd5b820180356001600160401b0381111561588657600080fd5b60208201915080360382131561589b57600080fd5b6123aa81836004860161573b565b600082516152f08184602087016148e8565b602081526000610c27602083018461491456fe5beea7b3b87c573953fec05007114d17712e5775d364acc106d8da9e74849033a264697066735822122037185519f33392822e922bceb3f8493229c013e44ed5920a53ad4fe49b38d44564736f6c634300080900330000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae23
Deployed Bytecode
0x6080604052600436106103055760003560e01c80638704f2a311610191578063c477be20116100e2578063ee98ce9111610090578063ee98ce911461091f578063f09541601461093f578063f0d250ba14610559578063f23a6e6114610954578063f2fde38b14610974578063f460590b14610994578063f4a33e0d146109b4578063f5116bc9146109d457600080fd5b8063c477be201461046d578063cd78ba01146107e8578063d9548e53146108ac578063e1784a0214610559578063e7d4a999146108df578063e91274f3146108ff578063eb374261146105f057600080fd5b8063afd76a0b1161013f578063afd76a0b14610724578063b4533aad14610744578063b50a2a5514610559578063ba84775914610775578063bc197c8114610788578063bdf52b45146107a8578063c1c30e80146107c857600080fd5b80638704f2a3146106845780638da5cb5b146106ba5780638f18439e1461046d57806390c2b10e146104585780639e57feb5146106cf578063a80d33fb146106e4578063ac5e2cb11461070457600080fd5b806354134876116102565780637234d8f2116102045780637234d8f2146105f0578063740db2801461046d578063781dc70a146106055780637ae1ace01461062557806380bc688f1461063a57806381787a851461065a5780638456cb591461066f578063853ca41a1461045857600080fd5b806354134876146105435780635a4e5a15146105595780635c975abb1461056e5780635fd34298146105835780636acc65db146105b0578063708d4d35146105c5578063715018a6146105db57600080fd5b80631bb03ca9116102b35780631bb03ca91461044357806324f8515b1461045857806325593ac21461046d5780632bcd27df146104825780633ed9ffb7146104b25780633f4ba83a146104e25780633fc8cef3146104f757600080fd5b8063015af8ee1461031157806301ffc9a7146103335780630873c6ec146103685780630ad486281461038d57806311f0794c146103ad578063150b7a02146103d45780631b01e72c1461040d57600080fd5b3661030c57005b600080fd5b34801561031d57600080fd5b5061033161032c3660046144b5565b6109f4565b005b34801561033f57600080fd5b5061035361034e3660046144d7565b610a63565b60405190151581526020015b60405180910390f35b34801561037457600080fd5b5061037f620f424081565b60405190815260200161035f565b34801561039957600080fd5b506103536103a8366004614501565b610a9a565b3480156103b957600080fd5b506103c2600481565b60405160ff909116815260200161035f565b3480156103e057600080fd5b506103f46103ef366004614580565b610af5565b6040516001600160e01b0319909116815260200161035f565b34801561041957600080fd5b50610353610428366004614501565b60009081526002602052604090206006015460ff1660011490565b34801561044f57600080fd5b506103c2600681565b34801561046457600080fd5b506103c2600081565b34801561047957600080fd5b506103c2600181565b34801561048e57600080fd5b5061035361049d3660046145f2565b60066020526000908152604090205460ff1681565b3480156104be57600080fd5b506103536104cd366004614501565b60036020526000908152604090205460ff1681565b3480156104ee57600080fd5b50610331610b2c565b34801561050357600080fd5b5061052b7f0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae2381565b6040516001600160a01b03909116815260200161035f565b34801561054f57600080fd5b5061037f60085481565b34801561056557600080fd5b506103c2600281565b34801561057a57600080fd5b50610353610b65565b34801561058f57600080fd5b5061037f61059e366004614501565b60056020526000908152604090205481565b3480156105bc57600080fd5b506103c2600881565b3480156105d157600080fd5b5061037f60075481565b3480156105e757600080fd5b50610331610b75565b3480156105fc57600080fd5b506103c2600381565b34801561061157600080fd5b5061035361062036600461471b565b610bae565b34801561063157600080fd5b506103c2600981565b34801561064657600080fd5b50610331610655366004614775565b610c2e565b34801561066657600080fd5b506103c2600781565b34801561067b57600080fd5b50610331610c6d565b34801561069057600080fd5b5061035361069f366004614501565b60009081526002602052604090206006015460ff1660031490565b3480156106c657600080fd5b5061052b610ca4565b3480156106db57600080fd5b506103c2600581565b3480156106f057600080fd5b506103536106ff366004614501565b610cb3565b34801561071057600080fd5b5061035361071f3660046147d0565b610ccf565b34801561073057600080fd5b5061033161073f366004614899565b610d0e565b34801561075057600080fd5b5061076461075f3660046144b5565b610e0d565b60405161035f959493929190614940565b61033161078336600461498f565b610ede565b34801561079457600080fd5b506103f46107a3366004614a93565b611724565b3480156107b457600080fd5b506103536107c3366004614501565b61175e565b3480156107d457600080fd5b506103316107e3366004614b51565b611769565b3480156107f457600080fd5b5061085b610803366004614501565b600260208190526000918252604090912080546001820154928201546003830154600484015460058501546006909501546001600160a01b039485169685169593909416939192909160ff8082169161010090041688565b604080516001600160a01b03998a168152978916602089015295909716948601949094526060850192909252608084015260a083015260ff90811660c083015290911660e08201526101000161035f565b3480156108b857600080fd5b506103536108c7366004614501565b60009081526002602052604090206005015442101590565b3480156108eb57600080fd5b506103316108fa366004614ba0565b6117f4565b34801561090b57600080fd5b5061033161091a366004614bd0565b611932565b34801561092b57600080fd5b5061035361093a366004614501565b611c14565b34801561094b57600080fd5b506103c2600a81565b34801561096057600080fd5b506103f461096f366004614ca2565b611c32565b34801561098057600080fd5b5061033161098f3660046145f2565b611c6a565b3480156109a057600080fd5b506103316109af366004614d0b565b611d0a565b3480156109c057600080fd5b506103536109cf366004614d39565b611dcf565b3480156109e057600080fd5b506103536109ef366004614501565b612164565b336109fd610ca4565b6001600160a01b031614610a2c5760405162461bcd60e51b8152600401610a2390614d5e565b60405180910390fd5b600881905560078290556040517f6c06ac894de6b71964f14d152b6674a4465a9b5d3f9cf9f216b8e7ea6146751990600090a15050565b60006001600160e01b03198216630a85bd0160e11b1480610a9457506001600160e01b03198216630271189760e51b145b92915050565b60008181526002602052604081206006015460ff166003145b8015610ad65750600082815260026020526040902060060154610100900460ff16155b8015610a94575050600090815260026020526040902060050154421090565b60095460009060ff16610b1a5760405162461bcd60e51b8152600401610a2390614d93565b50630a85bd0160e11b95945050505050565b33610b35610ca4565b6001600160a01b031614610b5b5760405162461bcd60e51b8152600401610a2390614d5e565b610b6361217e565b565b600154600160a01b900460ff1690565b33610b7e610ca4565b6001600160a01b031614610ba45760405162461bcd60e51b8152600401610a2390614d5e565b610b636000612216565b6000816001600160a01b0316610c1a610c14856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b86612268565b6001600160a01b03161490505b9392505050565b33610c37610ca4565b6001600160a01b031614610c5d5760405162461bcd60e51b8152600401610a2390614d5e565b610c6882848361228c565b505050565b33610c76610ca4565b6001600160a01b031614610c9c5760405162461bcd60e51b8152600401610a2390614d5e565b610b636123c4565b6001546001600160a01b031690565b60009081526002602081905260409091206006015460ff161490565b600060ff8216600314801590610ce9575060ff8216600514155b8015610cf9575060ff8216600414155b8015610a94575060ff82166006141592915050565b60026000541415610d315760405162461bcd60e51b8152600401610a2390614dca565b6002600055610d3e610b65565b15610d5b5760405162461bcd60e51b8152600401610a2390614e01565b60005b8151811015610e03576000828281518110610d7b57610d7b614e2b565b6020026020010151905080600001516001600160a01b03166342842e0e338684602001516040518463ffffffff1660e01b8152600401610dbd93929190614e41565b600060405180830381600087803b158015610dd757600080fd5b505af1158015610deb573d6000803e3d6000fd5b50505050508080610dfb90614e7b565b915050610d5e565b5050600160005550565b60046020818152600093845260408085209091529183529120805460018201546002830154600384015494840180546001600160a01b03909416959294919360ff90931692610e5b90614e96565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8790614e96565b8015610ed45780601f10610ea957610100808354040283529160200191610ed4565b820191906000526020600020905b815481529060010190602001808311610eb757829003601f168201915b5050505050905085565b60026000541415610f015760405162461bcd60e51b8152600401610a2390614dca565b6002600055610f0e610b65565b15610f2b5760405162461bcd60e51b8152600401610a2390614e01565b42856040013511610f7e5760405162461bcd60e51b815260206004820152601c60248201527f7472616e73616374696f6e20646561646c696e652072656163686564000000006044820152606401610a23565b60066000610f9260408801602089016145f2565b6001600160a01b0316815260208101919091526040016000205460ff16610ff35760405162461bcd60e51b81526020600482015260156024820152743ab735b737bbb71036b0b935b2ba1039b4b3b732b960591b6044820152606401610a23565b61100b61100660c0870160a088016147d0565b612424565b61107e82828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505060405161105592508991506020016150e4565b6040516020818303038152906040528051906020012087602001602081019061062091906145f2565b6110c25760405162461bcd60e51b815260206004820152601560248201527437b33332b91039b4b3b730ba3ab9329032b93937b960591b6044820152606401610a23565b6110d561071f60c0870160a088016147d0565b156111f1576000866040516020016110ed91906151f2565b60408051601f19818403018152919052805160208201209091508635146111565760405162461bcd60e51b815260206004820152601d60248201527f696e74656e74696f6e206861736820646f6573206e6f74206d617463680000006044820152606401610a23565b6111a785858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508451602080870191909120925061062091508b018b6145f2565b6111ef5760405162461bcd60e51b815260206004820152601960248201527834b73a32b73a34b7b71039b4b3b730ba3ab9329032b93937b960391b6044820152606401610a23565b505b600161120360c0870160a088016147d0565b60ff1614156112ea5761122461121f60e0870160c088016145f2565b612476565b600161123660e0880160c089016147d0565b60ff16146112865760405162461bcd60e51b815260206004820152601f60248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f53454c4c006044820152606401610a23565b6112e5608086013561129b60208901896145f2565b6112a860208a018a615291565b6112b860608c0160408d016145f2565b60608c013560808d01356112d260e08e0160c08f016145f2565b6112e06101408f018f6152da565b6124bd565b611717565b60026112fc60c0870160a088016147d0565b60ff1614156113d95761131861121f60e0870160c088016145f2565b600261132a60e0880160c089016147d0565b60ff161461137a5760405162461bcd60e51b815260206004820152601e60248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f42555900006044820152606401610a23565b6112e5608086013561138f60208901896145f2565b61139f60e0890160c08a016145f2565b6113ac60208b018b615291565b6113bc60608d0160408e016145f2565b60608d013560808e01356113d46101408f018f6152da565b6127c4565b60036113eb60c0870160a088016147d0565b60ff16141561144f5761140761121f60e0870160c088016145f2565b6112e5608086013561141f60e0880160c089016145f2565b611430610100890160e08a016145f2565b6101008901356114446101608b018b615291565b8b6101800135612a63565b600461146160c0870160a088016147d0565b60ff1614156114a85761147d61121f60e0870160c088016145f2565b6112e5608086013561149560e0880160c089016145f2565b6114a36101408901896152da565b612d74565b60056114ba60c0870160a088016147d0565b60ff1614156114d0576112e58560800135612f19565b60066114e260c0870160a088016147d0565b60ff1614156114f8576112e58560800135612fd1565b600761150a60c0870160a088016147d0565b60ff1614156115f05761152661121f60e0870160c088016145f2565b600361153860e0880160c089016147d0565b60ff16146115935760405162461bcd60e51b815260206004820152602260248201527f696e74656e742e6b696e642073686f756c64206265204b494e445f415543544960448201526127a760f11b6064820152608401610a23565b6112e560808601356115a860208901896145f2565b6115b560208a018a615291565b6115c560608c0160408d016145f2565b60608c013560808d01356115df60e08e0160c08f016145f2565b8d61010001358e6101200135613195565b600861160260c0870160a088016147d0565b60ff161415611626576112e560808601356116216101408801886152da565b6137a5565b600961163860c0870160a088016147d0565b60ff1614156116e25761165461121f60e0870160c088016145f2565b61166160208701876145f2565b6001600160a01b031661167a60e0870160c088016145f2565b6001600160a01b0316146116c75760405162461bcd60e51b81526020600482015260146024820152731bdb9b1e481cd95b1b195c8818d85b8818d85b1b60621b6044820152606401610a23565b6112e560808601356116dd6101408801886152da565b613801565b60405162461bcd60e51b815260206004820152600a602482015269696d706f737369626c6560b01b6044820152606401610a23565b5050600160005550505050565b60095460009060ff166117495760405162461bcd60e51b8152600401610a2390614d93565b5063bc197c8160e01b98975050505050505050565b6000610ab382610cb3565b6002600054141561178c5760405162461bcd60e51b8152600401610a2390614dca565b6002600055611799610b65565b156117b65760405162461bcd60e51b8152600401610a2390614e01565b60005b81811015610e03576117e28383838181106117d6576117d6614e2b565b905060200201356138fb565b806117ec81614e7b565b9150506117b9565b336117fd610ca4565b6001600160a01b0316146118235760405162461bcd60e51b8152600401610a2390614d5e565b6118428260009081526002602052604090206006015460ff1660031490565b61187c5760405162461bcd60e51b815260206004820152600b60248201526a3737ba1030bab1ba34b7b760a91b6044820152606401610a23565b61188582611c14565b6118a15760405162461bcd60e51b8152600401610a23906152fa565b6000828152600260205260409020816118ce5780546118ce90849030906001600160a01b03166000613980565b6002810154600182015460048301546118f4926001600160a01b0390811692169061228c565b60068101805461ff00191661020017905560405183906000805160206158cf833981519152906119259084906153a9565b60405180910390a2505050565b600260005414156119555760405162461bcd60e51b8152600401610a2390614dca565b6002600055611962610b65565b1561197f5760405162461bcd60e51b8152600401610a2390614e01565b428260400151116119c55760405162461bcd60e51b815260206004820152601060248201526f191958591b1a5b99481c995858da195960821b6044820152606401610a23565b6119fa81836040516020016119da9190615464565b604051602081830303815290604052805190602001208460200151610bae565b611a385760405162461bcd60e51b815260206004820152600f60248201526e39b4b3b730ba3ab9329032b93937b960891b6044820152606401610a23565b60005b826080015151811015611b035782608001518181518110611a5e57611a5e614e2b565b6020026020010151600001516001600160a01b03166342842e0e33856020015186608001518581518110611a9457611a94614e2b565b6020026020010151602001516040518463ffffffff1660e01b8152600401611abe93929190614e41565b600060405180830381600087803b158015611ad857600080fd5b505af1158015611aec573d6000803e3d6000fd5b505050508080611afb90614e7b565b915050611a3b565b5060005b826060015151811015611bcf5782606001518181518110611b2a57611b2a614e2b565b6020026020010151600001516001600160a01b03166342842e0e84602001513386606001518581518110611b6057611b60614e2b565b6020026020010151602001516040518463ffffffff1660e01b8152600401611b8a93929190614e41565b600060405180830381600087803b158015611ba457600080fd5b505af1158015611bb8573d6000803e3d6000fd5b505050508080611bc790614e7b565b915050611b07565b507f92060d15ec9a14885865b744d2efb1fff3cab53411058a530f51d480288a864c828233604051611c0393929190615477565b60405180910390a150506001600055565b600090815260026020526040902060060154610100900460ff161590565b60095460009060ff16611c575760405162461bcd60e51b8152600401610a2390614d93565b5063f23a6e6160e01b9695505050505050565b33611c73610ca4565b6001600160a01b031614611c995760405162461bcd60e51b8152600401610a2390614d5e565b6001600160a01b038116611cfe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b611d0781612216565b50565b33611d13610ca4565b6001600160a01b031614611d395760405162461bcd60e51b8152600401610a2390614d5e565b8015611d64576001600160a01b0382166000908152600660205260409020805460ff19169055611d88565b6001600160a01b0382166000908152600660205260409020805460ff191660011790555b604080516001600160a01b038416815282151560208201527f90d56af4745c314d9b45054b55dc973378c558c1ad1554bccc70d39aa63a2cc5910160405180910390a15050565b6000611dda83612164565b611e155760405162461bcd60e51b815260206004820152600c60248201526b6e6f20696e76656e746f727960a01b6044820152606401610a23565b60005b60008481526005602052604090205481101561215a5760008481526004602090815260408083208484529091529020600381015460ff16611e5857612147565b600381015460ff166001141561203557805460018201546040516331a9108f60e11b81526001600160a01b03928316928716918391636352211e91611ea39160040190815260200190565b60206040518083038186803b158015611ebb57600080fd5b505afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef391906154b5565b6001600160a01b03161480156120195750600182015460405163020604bf60e21b815230916001600160a01b0384169163081812fc91611f399160040190815260200190565b60206040518083038186803b158015611f5157600080fd5b505afa158015611f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8991906154b5565b6001600160a01b03161480612019575060405163e985e9c560e01b81526001600160a01b03868116600483015230602483015282169063e985e9c5906044015b60206040518083038186803b158015611fe157600080fd5b505afa158015611ff5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201991906154d2565b156120235761202f565b60009350505050610a94565b50612147565b600381015460ff166002141561210b57805460028201546001830154604051627eeac760e11b81526001600160a01b0390931692839162fdd58e9161207e918a916004016154ef565b60206040518083038186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ce9190615508565b10158015612019575060405163e985e9c560e01b81526001600160a01b03868116600483015230602483015282169063e985e9c590604401611fc9565b60405162461bcd60e51b81526020600482015260116024820152703ab739bab83837b93a32b2103a37b5b2b760791b6044820152606401610a23565b508061215281614e7b565b915050611e18565b5060019392505050565b60009081526002602052604090206006015460ff16151590565b612186610b65565b6121c95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a23565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060006122778585613b79565b9150915061228481613be9565b509392505050565b8061229657505050565b6001600160a01b0382166122ec5760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f74207472616e7366657220746f20616464726573732830290000006044820152606401610a23565b6001600160a01b0383166123b057604051632e1a7d4d60e01b8152600481018290527f0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae236001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561235c57600080fd5b505af1158015612370573d6000803e3d6000fd5b50506040516001600160a01b038516925083156108fc02915083906000818181858888f193505050501580156123aa573d6000803e3d6000fd5b50505050565b610c686001600160a01b0384168383613d9f565b6123cc610b65565b156123e95760405162461bcd60e51b8152600401610a2390614e01565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121f93390565b60ff8116158015906124395750600a60ff8216105b611d075760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964206f70636f646560901b6044820152606401610a23565b6001600160a01b0381163314611d075760405162461bcd60e51b815260206004820152600c60248201526b3bb937b7339039b2b73232b960a11b6044820152606401610a23565b6124c689612164565b156125025760405162461bcd60e51b815260206004820152600c60248201526b191d5c1b1a58d85d19481a5960a21b6044820152606401610a23565b42831161254a5760405162461bcd60e51b81526020600482015260166024820152751cd95b1b081a185cc8185b1c9958591e48195b99195960521b6044820152606401610a23565b612555898888613df5565b6125628989846001613980565b6001600160a01b0385166126085734841461258f5760405162461bcd60e51b8152600401610a2390615521565b7f0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae236001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156125ea57600080fd5b505af11580156125fe573d6000803e3d6000fd5b505050505061261d565b61261d6001600160a01b038616833087613ea7565b604051806101000160405280896001600160a01b03168152602001836001600160a01b03168152602001866001600160a01b03168152602001858152602001858152602001848152602001600160ff168152602001600160ff16815250600260008b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050886000805160206158cf833981519152600260008c81526020019081526020016000206040516127a791906153a9565b60405180910390a26127b98982613ec8565b505050505050505050565b6127cd89612164565b156128155760405162461bcd60e51b8152602060048201526018602482015277696e76656e746f727920616c72656164792065786973747360401b6044820152606401610a23565b42821161285c5760405162461bcd60e51b8152602060048201526015602482015274189d5e481a185cc8185b1c9958591e48195b991959605a1b6044820152606401610a23565b6001600160a01b0384166128ac5760405162461bcd60e51b815260206004820152601760248201527631b0b73737ba103ab9b2903730ba34bb32903a37b5b2b760491b6044820152606401610a23565b6128b7898787613df5565b6128c489888a6001613980565b6128d96001600160a01b038516893086613ea7565b604051806101000160405280886001600160a01b03168152602001896001600160a01b03168152602001856001600160a01b03168152602001848152602001848152602001838152602001600260ff168152602001600160ff16815250600260008b815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050886000805160206158cf833981519152600260008c81526020019081526020016000206040516127a791906153a9565b612a6c87612164565b15612ab95760405162461bcd60e51b815260206004820152601a60248201527f696e76656e746f7279496420616c7265616479206578697374730000000000006044820152606401610a23565b428111612b125760405162461bcd60e51b815260206004820152602160248201527f646561646c696e65206d7573742062652067726561746572207468616e206e6f6044820152607760f81b6064820152608401610a23565b612b1d878484613df5565b6001600160a01b038516612bc357348414612b4a5760405162461bcd60e51b8152600401610a2390615521565b7f0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae236001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b158015612ba557600080fd5b505af1158015612bb9573d6000803e3d6000fd5b5050505050612bd8565b612bd86001600160a01b038616873087613ea7565b60405180610100016040528060006001600160a01b03168152602001876001600160a01b03168152602001866001600160a01b03168152602001858152602001858152602001828152602001600260ff168152602001600060ff168152506002600089815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff160217905550905050866000805160206158cf833981519152600260008a8152602001908152602001600020604051612d6391906153a9565b60405180910390a250505050505050565b612d7d83610cb3565b612dbd5760405162461bcd60e51b81526020600482015260116024820152701a5908191bd95cc81b9bdd08195e1a5cdd607a1b6044820152606401610a23565b6000838152600260205260409020612dd484611c14565b612df05760405162461bcd60e51b8152600401610a23906152fa565b612dfa8484611dcf565b612e3c5760405162461bcd60e51b8152602060048201526013602482015272189d5b991b19481b9bdd08185c1c1c9bdd9959606a1b6044820152606401610a23565b6000848152600260205260409020600501544210612e905760405162461bcd60e51b8152602060048201526011602482015270189d5e481bd999995c88195e1c1a5c9959607a1b6044820152606401610a23565b60068101805461ff00191661010017905580546001600160a01b038085166001600160a01b0319909216919091178255600182810154612ed7928792879290911690613980565b836000805160206158cf83398151915260026000878152602001908152602001600020604051612f0791906153a9565b60405180910390a26123aa8483613ec8565b612f2281610cb3565b8015612f325750612f3281611c14565b612f4e5760405162461bcd60e51b8152600401610a239061554d565b600081815260026020819052604090912060068101805461ff0019166102001790559081015460018201546004830154612f95926001600160a01b0390811692169061228c565b816000805160206158cf83398151915260026000858152602001908152602001600020604051612fc591906153a9565b60405180910390a25050565b33612fdb82610cb3565b8015612feb5750612feb82611c14565b6130075760405162461bcd60e51b8152600401610a239061554d565b60005b6000838152600560205260409020548110156131875760008381526004602090815260408083208484529091529020600381015460ff166001141561312c57805460018201546040516331a9108f60e11b81526001600160a01b03928316928616918391636352211e916130849160040190815260200190565b60206040518083038186803b15801561309c57600080fd5b505afa1580156130b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d491906154b5565b6001600160a01b0316146131265760405162461bcd60e51b815260206004820152601960248201527831b0b63632b9103237b2b9903737ba1037bbb7103a37b5b2b760391b6044820152606401610a23565b50613174565b60405162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742072656a656374206e6f6e2d37323120746f6b656e00000000006044820152606401610a23565b508061317f81614e7b565b91505061300a565b5061319182612f19565b5050565b6009805460ff19166001179055620f424081106131ee5760405162461bcd60e51b8152602060048201526017602482015276696e63656e746976655261746520746f6f206c6172676560481b6044820152606401610a23565b6001600160a01b0386166132945734821461321b5760405162461bcd60e51b8152600401610a2390615521565b7f0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae236001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561327657600080fd5b505af115801561328a573d6000803e3d6000fd5b50505050506132a9565b6132a96001600160a01b038716843085613ea7565b6132c88a60009081526002602052604090206006015460ff1660031490565b156134fd5760008a815260026020526040902080546001600160a01b038b811691161461332f5760405162461bcd60e51b81526020600482015260156024820152740e6cad8d8cae440c8decae640dcdee840dac2e8c6d605b1b6044820152606401610a23565b6006810154610100900460ff16156133595760405162461bcd60e51b8152600401610a2390615573565b4281600501541161337c5760405162461bcd60e51b8152600401610a239061559d565b620f4240600754826003015461339291906155c4565b61339c91906155e3565b81600301546133ab9190615605565b8310156133ee5760405162461bcd60e51b815260206004820152601160248201527062696420707269636520746f6f206c6f7760781b6044820152606401610a23565b6000620f42406133fe84866155c4565b61340891906155e3565b60018301546004840154919250613435918a916001600160a01b031690613430908590615605565b61228c565b600182015460048301548d917fa48bcf3362c21033397c03b92fb367d1962ba13b5bde0dfe491f9d88abb59e3f916001600160a01b039091169061347a908590615605565b6040516134889291906154ef565b60405180910390a26001820180546001600160a01b0319166001600160a01b038716179055600382018490556134be818561561d565b600483015560058201546008546134d59042615605565b106134f6576008548260050160008282546134f09190615605565b90915550505b5050613757565b6135068a612164565b1561354e5760405162461bcd60e51b815260206004820152601860248201527734b73b32b73a37b93c9034b9903737ba1030bab1ba34b7b760411b6044820152606401610a23565b8482101561359e5760405162461bcd60e51b815260206004820152601a60248201527f626964206c6f776572207468616e2073746172742070726963650000000000006044820152606401610a23565b4284116135bd5760405162461bcd60e51b8152600401610a239061559d565b600854849081906135ce9042615605565b106135e3576008546135e09082615605565b90505b6040518061010001604052808b6001600160a01b03168152602001856001600160a01b03168152602001886001600160a01b03168152602001848152602001848152602001828152602001600360ff168152602001600060ff16815250600260008d815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff021916908360ff16021790555060e08201518160060160016101000a81548160ff021916908360ff1602179055509050506137488b8a8a613df5565b6137558b8b306000613980565b505b896000805160206158cf833981519152600260008d815260200190815260200160002060405161378791906153a9565b60405180910390a250506009805460ff191690555050505050505050565b60008281526002602052604090206005015442116137fb5760405162461bcd60e51b815260206004820152601360248201527261756374696f6e207374696c6c20676f696e6760681b6044820152606401610a23565b61319182825b6138208260009081526002602052604090206006015460ff1660031490565b6138655760405162461bcd60e51b8152602060048201526016602482015275185d58dd1a5bdb88191bd95cc81b9bdd08195e1a5cdd60521b6044820152606401610a23565b61386e82611c14565b61388a5760405162461bcd60e51b8152600401610a2390615573565b6000828152600260205260409081902060068101805461ff001916610100179055905183906000805160206158cf833981519152906138ca9084906153a9565b60405180910390a26001808201546138f191859130916001600160a01b0390911690613980565b610c688383613ec8565b600081815260026020526040902060018101546001600160a01b031633148061393557506000828152600260205260409020600501544210155b6139775760405162461bcd60e51b815260206004820152601360248201527231b0b63632b91034b9903737ba10313abcb2b960691b6044820152606401610a23565b61319182612f19565b600084815260056020526040812054905b81811015613b715760008681526004602090815260408083208484529091529020600381015460ff16613aa8578315613aa3576001600160a01b038516158015906139e557506001600160a01b0385163014155b613a3d5760405162461bcd60e51b8152602060048201526024808201527f6d696e74207461726765742063616e6e6f74206265207a65726f206f72206d616044820152631c9ad95d60e21b6064820152608401610a23565b805460405163b510391f60e01b81526001600160a01b039091169063b510391f90613a7090889060048087019101615634565b600060405180830381600087803b158015613a8a57600080fd5b505af1158015613a9e573d6000803e3d6000fd5b505050505b613b5e565b600381015460ff1660011415613aee5780546001820154604051632142170760e11b81526001600160a01b03909216916342842e0e91613a70918a918a91600401614e41565b600381015460ff166002141561210b57805460018201546002830154604051637921219560e11b81526001600160a01b038a8116600483015289811660248301526044820193909352606481019190915260a06084820152600060a482015291169063f242432a9060c401613a70565b5080613b6981614e7b565b915050613991565b505050505050565b600080825160411415613bb05760208301516040840151606085015160001a613ba48782858561407f565b94509450505050613be2565b825160401415613bda5760208301516040840151613bcf868383614162565b935093505050613be2565b506000905060025b9250929050565b6000816004811115613bfd57613bfd6156c9565b1415613c065750565b6001816004811115613c1a57613c1a6156c9565b1415613c635760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610a23565b6002816004811115613c7757613c776156c9565b1415613cc55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a23565b6003816004811115613cd957613cd96156c9565b1415613d325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a23565b6004816004811115613d4657613d466156c9565b1415611d075760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a23565b610c688363a9059cbb60e01b8484604051602401613dbe9291906154ef565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614191565b80613e315760405162461bcd60e51b815260206004820152600c60248201526b656d7074792062756e646c6560a01b6044820152606401610a23565b60008381526005602052604081208290555b818110156123aa57828282818110613e5d57613e5d614e2b565b9050602002810190613e6f91906156df565b60008581526004602090815260408083208584529091529020613e9282826157fb565b50819050613e9f81614e7b565b915050613e43565b6123aa846323b872dd60e01b858585604051602401613dbe93929190614e41565b6000828152600260205260409020613edf83612164565b8015613ef757506006810154610100900460ff166001145b613f435760405162461bcd60e51b815260206004820152601b60248201527f6e6f20696e76656e746f7279206f72207374617465206572726f7200000000006044820152606401610a23565b613f5683613f518480615291565b614263565b60038101546000620f4240613f6f6020860135846155c4565b613f7991906155e3565b90506000620f4240613f8f6040870135856155c4565b613f9991906155e3565b90506000620f4240613faf6060880135866155c4565b613fb991906155e3565b905060008183858860040154613fcf919061561d565b613fd9919061561d565b613fe3919061561d565b60028701548754919250614004916001600160a01b0391821691168361228c565b60028601546001870154614025916001600160a01b0390811691168461228c565b600286015461404d906001600160a01b031661404760a08a0160808b016145f2565b8661228c565b6002860154614075906001600160a01b031661406f60c08a0160a08b016145f2565b8561228c565b5050505050505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156140ac5750600090506003614159565b8460ff16601b141580156140c457508460ff16601c14155b156140d55750600090506004614159565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614129573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661415257600060019250925050614159565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016141838782888561407f565b935093505050935093915050565b60006141e6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661433d9092919063ffffffff16565b805190915015610c68578080602001905181019061420491906154d2565b610c685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a23565b60005b818110156123aa57600083838381811061428257614282614e2b565b60209081029290920135600081815260039093526040909220549192505060ff16156142e75760405162461bcd60e51b815260206004820152601460248201527318dbdd5c1bdb88185b1c9958591e481cdc195b9d60621b6044820152606401610a23565b600081815260036020526040808220805460ff1916600117905551829187917f6aa71aa6b7aa6036ace4e4ceefbab7d89c4afb7fcfa1a3680499d7b37d32c82f9190a3508061433581614e7b565b915050614266565b606061434c8484600085614354565b949350505050565b6060824710156143b55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a23565b843b6144035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a23565b600080866001600160a01b0316858760405161441f91906158a9565b60006040518083038185875af1925050503d806000811461445c576040519150601f19603f3d011682016040523d82523d6000602084013e614461565b606091505b509150915061447182828661447c565b979650505050505050565b6060831561448b575081610c27565b82511561449b5782518084602001fd5b8160405162461bcd60e51b8152600401610a2391906158bb565b600080604083850312156144c857600080fd5b50508035926020909101359150565b6000602082840312156144e957600080fd5b81356001600160e01b031981168114610c2757600080fd5b60006020828403121561451357600080fd5b5035919050565b6001600160a01b0381168114611d0757600080fd5b803561453a8161451a565b919050565b60008083601f84011261455157600080fd5b5081356001600160401b0381111561456857600080fd5b602083019150836020828501011115613be257600080fd5b60008060008060006080868803121561459857600080fd5b85356145a38161451a565b945060208601356145b38161451a565b93506040860135925060608601356001600160401b038111156145d557600080fd5b6145e18882890161453f565b969995985093965092949392505050565b60006020828403121561460457600080fd5b8135610c278161451a565b6001600160a01b03169052565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156146545761465461461c565b60405290565b60405160a081016001600160401b03811182821017156146545761465461461c565b604051601f8201601f191681016001600160401b03811182821017156146a4576146a461461c565b604052919050565b600082601f8301126146bd57600080fd5b81356001600160401b038111156146d6576146d661461c565b6146e9601f8201601f191660200161467c565b8181528460208386010111156146fe57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561473057600080fd5b83356001600160401b0381111561474657600080fd5b614752868287016146ac565b93505060208401359150604084013561476a8161451a565b809150509250925092565b60008060006060848603121561478a57600080fd5b83356147958161451a565b925060208401356147a58161451a565b929592945050506040919091013590565b60ff81168114611d0757600080fd5b803561453a816147b6565b6000602082840312156147e257600080fd5b8135610c27816147b6565b600082601f8301126147fe57600080fd5b813560206001600160401b038211156148195761481961461c565b614827818360051b0161467c565b82815260069290921b8401810191818101908684111561484657600080fd5b8286015b8481101561488e57604081890312156148635760008081fd5b61486b614632565b81356148768161451a565b8152818501358582015283529183019160400161484a565b509695505050505050565b600080604083850312156148ac57600080fd5b82356148b78161451a565b915060208301356001600160401b038111156148d257600080fd5b6148de858286016147ed565b9150509250929050565b60005b838110156149035781810151838201526020016148eb565b838111156123aa5750506000910152565b6000815180845261492c8160208601602086016148e8565b601f01601f19169290920160200192915050565b60018060a01b038616815284602082015283604082015260ff8316606082015260a06080820152600061447160a0830184614914565b60006101a0828403121561498957600080fd5b50919050565b600080600080600080608087890312156149a857600080fd5b86356001600160401b03808211156149bf57600080fd5b9088019060e0828b0312156149d357600080fd5b909650602088013590808211156149e957600080fd5b6149f58a838b01614976565b96506040890135915080821115614a0b57600080fd5b614a178a838b0161453f565b90965094506060890135915080821115614a3057600080fd5b50614a3d89828a0161453f565b979a9699509497509295939492505050565b60008083601f840112614a6157600080fd5b5081356001600160401b03811115614a7857600080fd5b6020830191508360208260051b8501011115613be257600080fd5b60008060008060008060008060a0898b031215614aaf57600080fd5b8835614aba8161451a565b97506020890135614aca8161451a565b965060408901356001600160401b0380821115614ae657600080fd5b614af28c838d01614a4f565b909850965060608b0135915080821115614b0b57600080fd5b614b178c838d01614a4f565b909650945060808b0135915080821115614b3057600080fd5b50614b3d8b828c0161453f565b999c989b5096995094979396929594505050565b60008060208385031215614b6457600080fd5b82356001600160401b03811115614b7a57600080fd5b614b8685828601614a4f565b90969095509350505050565b8015158114611d0757600080fd5b60008060408385031215614bb357600080fd5b823591506020830135614bc581614b92565b809150509250929050565b60008060408385031215614be357600080fd5b82356001600160401b0380821115614bfa57600080fd5b9084019060a08287031215614c0e57600080fd5b614c1661465a565b823581526020830135614c288161451a565b602082015260408381013590820152606083013582811115614c4957600080fd5b614c55888286016147ed565b606083015250608083013582811115614c6d57600080fd5b614c79888286016147ed565b60808301525093506020850135915080821115614c9557600080fd5b506148de858286016146ac565b60008060008060008060a08789031215614cbb57600080fd5b8635614cc68161451a565b95506020870135614cd68161451a565b9450604087013593506060870135925060808701356001600160401b03811115614cff57600080fd5b614a3d89828a0161453f565b60008060408385031215614d1e57600080fd5b8235614d298161451a565b91506020830135614bc581614b92565b60008060408385031215614d4c57600080fd5b823591506020830135614bc58161451a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f63616e206e6f74207472616e7366657220746f6b656e206469726563746c7900604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415614e8f57614e8f614e65565b5060010190565b600181811c90821680614eaa57607f821691505b6020821081141561498957634e487b7160e01b600052602260045260246000fd5b6000823560be19833603018112614ee157600080fd5b90910192915050565b6000808335601e19843603018112614f0157600080fd5b83016020810192503590506001600160401b03811115614f2057600080fd5b8060051b3603831315613be257600080fd5b6000614f3e8283614eea565b60c080865285018190526001600160fb1b03811115614f5c57600080fd5b60051b808260e087013760e081860101915050600081526020830135602085015260408301356040850152606083013560608501526080830135614f9f8161451a565b6001600160a01b03166080850152614fb960a0840161452f565b61228460a086018261460f565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b81835260006020808501808196508560051b810191508460005b878110156150d75782840389528135609e1988360301811261502a57600080fd5b870160a081356150398161451a565b6001600160a01b03168652818701358787015260408083013590870152606080830135615065816147b6565b60ff169087015260808281013536849003601e1901811261508557600080fd5b830180356001600160401b0381111561509d57600080fd5b8036038513156150ac57600080fd5b83838a01526150c0848a01828c8501614fc6565b9d8a019d9850505093870193505050600101615009565b5091979650505050505050565b602081528135602082015260006150fd6020840161452f565b61510a604084018261460f565b506040830135606083015260608301356080830152608083013560a083015261513560a084016147c5565b60ff811660c08401525061514b60c0840161452f565b61515860e084018261460f565b5061516560e0840161452f565b6101006151748185018361460f565b6101209150808501358285015250610140818501358185015261519981860186614ecb565b9150506101a061016081818601526151b56101c0860184614f32565b92506151c381870187614eea565b9150610180601f1987860301818801526151de858484614fef565b970135959092019490945250929392505050565b60208152600082356152038161451a565b60018060a01b03808216602085015261521f6020860186614eea565b925060e0604086015261523761010086018483614fef565b92505060408501356152488161451a565b8181166060860152505060608401356080840152608084013560a084015260a084013560c084015260c084013561527e816147b6565b60ff1660e0939093019290925250919050565b6000808335601e198436030181126152a857600080fd5b8301803591506001600160401b038211156152c257600080fd5b6020019150600581901b3603821315613be257600080fd5b6000823560be198336030181126152f057600080fd5b9190910192915050565b6020808252600890820152673737ba1037b832b760c11b604082015260600190565b6153368261533183546001600160a01b031690565b61460f565b60018101546001600160a01b0316615351602084018261460f565b5060028101546001600160a01b031661536d604084018261460f565b506003810154606083015260048101546080830152600581015460a08301526006015460ff80821660c084015260089190911c1660e090910152565b6101008101610a94828461531c565b600081518084526020808501945080840160005b838110156153fc57815180516001600160a01b0316885283015183880152604090960195908201906001016153cc565b509495945050505050565b8051825260018060a01b036020820151166020830152604081015160408301526000606082015160a0606085015261544260a08501826153b8565b90506080830151848203608086015261545b82826153b8565b95945050505050565b602081526000610c276020830184615407565b60608152600061548a6060830186615407565b828103602084015261549c8186614914565b91505060018060a01b0383166040830152949350505050565b6000602082840312156154c757600080fd5b8151610c278161451a565b6000602082840312156154e457600080fd5b8151610c2781614b92565b6001600160a01b03929092168252602082015260400190565b60006020828403121561551a57600080fd5b5051919050565b6020808252601290820152717072696365203d3d206d73672e76616c756560701b604082015260600190565b6020808252600c908201526b6e6f74206f70656e2062757960a01b604082015260600190565b60208082526010908201526f30bab1ba34b7b7103737ba1037b832b760811b604082015260600190565b6020808252600d908201526c185d58dd1a5bdb88195b991959609a1b604082015260600190565b60008160001904831182151516156155de576155de614e65565b500290565b60008261560057634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561561857615618614e65565b500190565b60008282101561562f5761562f614e65565b500390565b60018060a01b0383168152600060206040818401526000845461565681614e96565b8060408701526060600180841660008114615678576001811461568c576156ba565b60ff198516898401526080890195506156ba565b896000528660002060005b858110156156b25781548b8201860152908301908801615697565b8a0184019650505b50939998505050505050505050565b634e487b7160e01b600052602160045260246000fd5b60008235609e198336030181126152f057600080fd5b601f821115610c6857600081815260208120601f850160051c8101602086101561571c5750805b601f850160051c820191505b81811015613b7157828155600101615728565b6001600160401b038311156157525761575261461c565b615766836157608354614e96565b836156f5565b6000601f84116001811461579a57600085156157825750838201355b600019600387901b1c1916600186901b1783556157f4565b600083815260209020601f19861690835b828110156157cb57868501358255602094850194600190920191016157ab565b50868210156157e85760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b81356158068161451a565b81546001600160a01b0319166001600160a01b03919091161781556020820135600182015560408201356002820155600381016060830135615847816147b6565b815460ff191660ff91909116179055608082013536839003601e1901811261586e57600080fd5b820180356001600160401b0381111561588657600080fd5b60208201915080360382131561589b57600080fd5b6123aa81836004860161573b565b600082516152f08184602087016148e8565b602081526000610c27602083018461491456fe5beea7b3b87c573953fec05007114d17712e5775d364acc106d8da9e74849033a264697066735822122037185519f33392822e922bceb3f8493229c013e44ed5920a53ad4fe49b38d44564736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae23
-----Decoded View---------------
Arg [0] : weth_ (address): 0x5C7F8A570d578ED84E63fdFA7b1eE72dEae1AE23
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005c7f8a570d578ed84e63fdfa7b1ee72deae1ae23
Deployed Bytecode Sourcemap
44385:26751:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48616:270;;;;;;;;;;-1:-1:-1;48616:270:0;;;;;:::i;:::-;;:::i;:::-;;50712:242;;;;;;;;;;-1:-1:-1;50712:242:0;;;;;:::i;:::-;;:::i;:::-;;;723:14:1;;716:22;698:41;;686:2;671:18;50712:242:0;;;;;;;;45750:39;;;;;;;;;;;;45786:3;45750:39;;;;;896:25:1;;;884:2;869:18;45750:39:0;750:177:1;69452:227:0;;;;;;;;;;-1:-1:-1;69452:227:0;;;;;:::i;:::-;;:::i;45066:39::-;;;;;;;;;;;;45104:1;45066:39;;;;;1369:4:1;1357:17;;;1339:36;;1327:2;1312:18;45066:39:0;1197:184:1;49355:326:0;;;;;;;;;;-1:-1:-1;49355:326:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;2934:33:1;;;2916:52;;2904:2;2889:18;49355:326:0;2772:202:1;70162:114:0;;;;;;;;;;-1:-1:-1;70162:114:0;;;;;:::i;:::-;70211:4;70235:15;;;:11;:15;;;;;:20;;;:33;:20;44552:1;70235:33;;70162:114;45198:39;;;;;;;;;;;;45236:1;45198:39;;44648:37;;;;;;;;;;;;44684:1;44648:37;;44518:35;;;;;;;;;;;;44552:1;44518:35;;48256:45;;;;;;;;;;-1:-1:-1;48256:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48065:43;;;;;;;;;;-1:-1:-1;48065:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49282:65;;;;;;;;;;;;;:::i;47974:27::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3523:32:1;;;3505:51;;3493:2;3478:18;47974:27:0;3347:215:1;48414:43:0;;;;;;;;;;;;;;;;44736:42;;;;;;;;;;;;44777:1;44736:42;;7088:86;;;;;;;;;;;;;:::i;48194:55::-;;;;;;;;;;-1:-1:-1;48194:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;45341:45;;;;;;;;;;;;45385:1;45341:45;;48349:58;;;;;;;;;;;;;;;;5468:94;;;;;;;;;;;;;:::i;44601:38::-;;;;;;;;;;;;44638:1;44601:38;;70665:288;;;;;;;;;;-1:-1:-1;70665:288:0;;;;;:::i;:::-;;:::i;45425:43::-;;;;;;;;;;;;45467:1;45425:43;;54686:142;;;;;;;;;;-1:-1:-1;54686:142:0;;;;;:::i;:::-;;:::i;45263:32::-;;;;;;;;;;;;45294:1;45263:32;;49213:61;;;;;;;;;;;;;:::i;69914:120::-;;;;;;;;;;-1:-1:-1;69914:120:0;;;;;:::i;:::-;69966:4;69990:15;;;:11;:15;;;;;:20;;;:36;:20;44638:1;69990:36;;69914:120;4817:87;;;;;;;;;;;;;:::i;45133:39::-;;;;;;;;;;;;45171:1;45133:39;;70042:112;;;;;;;;;;-1:-1:-1;70042:112:0;;;;;:::i;:::-;;:::i;70961:172::-;;;;;;;;;;-1:-1:-1;70961:172:0;;;;;:::i;:::-;;:::i;56073:268::-;;;;;;;;;;-1:-1:-1;56073:268:0;;;;;:::i;:::-;;:::i;48115:72::-;;;;;;;;;;-1:-1:-1;48115:72:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;50962:3526::-;;;;;;:::i;:::-;;:::i;50057:396::-;;;;;;;;;;-1:-1:-1;50057:396:0;;;;;:::i;:::-;;:::i;69687:219::-;;;;;;;;;;-1:-1:-1;69687:219:0;;;;;:::i;:::-;;:::i;54496:182::-;;;;;;;;;;-1:-1:-1;54496:182:0;;;;;:::i;:::-;;:::i;48010:48::-;;;;;;;;;;-1:-1:-1;48010:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48010:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13341:15:1;;;13323:34;;13393:15;;;13388:2;13373:18;;13366:43;13445:15;;;;13425:18;;;13418:43;;;;13492:2;13477:18;;13470:34;;;;13535:3;13520:19;;13513:35;13303:3;13564:19;;13557:35;13641:4;13629:17;;;13623:3;13608:19;;13601:46;13684:17;;;13678:3;13663:19;;13656:46;13272:3;13257:19;48010:48:0;12937:771:1;70530:127:0;;;;;;;;;;-1:-1:-1;70530:127:0;;;;;:::i;:::-;70582:4;70625:15;;;:11;:15;;;;;:24;;;70606:15;:43;;;70530:127;54881:480;;;;;;;;;;-1:-1:-1;54881:480:0;;;;;:::i;:::-;;:::i;55369:696::-;;;;;;;;;;-1:-1:-1;55369:696:0;;;;;:::i;:::-;;:::i;70398:124::-;;;;;;;;;;-1:-1:-1;70398:124:0;;;;;:::i;:::-;;:::i;45523:33::-;;;;;;;;;;;;45554:2;45523:33;;49689:360;;;;;;;;;;-1:-1:-1;49689:360:0;;;;;:::i;:::-;;:::i;5717:192::-;;;;;;;;;;-1:-1:-1;5717:192:0;;;;;:::i;:::-;;:::i;48894:258::-;;;;;;;;;;-1:-1:-1;48894:258:0;;;;;:::i;:::-;;:::i;68178:1266::-;;;;;;;;;;-1:-1:-1;68178:1266:0;;;;;:::i;:::-;;:::i;70284:106::-;;;;;;;;;;-1:-1:-1;70284:106:0;;;;;:::i;:::-;;:::i;48616:270::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;;;;;;;;;48750:18:::1;:40:::0;;;48801:19:::1;:42:::0;;;48859:19:::1;::::0;::::1;::::0;-1:-1:-1;;48859:19:0::1;48616:270:::0;;:::o;50712:242::-;50791:4;-1:-1:-1;;;;;;50829:48:0;;-1:-1:-1;;;50829:48:0;;50828:118;;-1:-1:-1;;;;;;;50896:49:0;;-1:-1:-1;;;50896:49:0;50828:118;50808:138;50712:242;-1:-1:-1;;50712:242:0:o;69452:227::-;69508:4;69990:15;;;:11;:15;;;;;:20;;;:36;:20;44638:1;69990:36;69545:13;:67;;;;-1:-1:-1;44684:1:0;69575:15;;;:11;:15;;;;;:22;;;;;;:37;:22;:37;69545:67;:126;;;;-1:-1:-1;;69629:15:0;;;;:11;:15;;;;;:24;;;69656:15;-1:-1:-1;;69452:227:0:o;49355:326::-;50507:11;;49542:6;;50507:11;;50499:55;;;;-1:-1:-1;;;50499:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;49355:326:0;;;;;;;:::o;49282:65::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;49329:10:::1;:8;:10::i;:::-;49282:65::o:0;7088:86::-;7159:7;;-1:-1:-1;;;7159:7:0;;;;;7088:86::o;5468:94::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;5533:21:::1;5551:1;5533:9;:21::i;70665:288::-:0;70800:4;70939:6;-1:-1:-1;;;;;70875:70:0;:60;70889:34;70918:4;43731:58;;39128:66:1;43731:58:0;;;39116:79:1;39211:12;;;39204:28;;;43598:7:0;;39248:12:1;;43731:58:0;;;;;;;;;;;;43721:69;;;;;;43714:76;;43529:269;;;;70889:34;70925:9;70875:13;:60::i;:::-;-1:-1:-1;;;;;70875:70:0;;70868:77;;70665:288;;;;;;:::o;54686:142::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;54789:31:::1;54799:8;54809:2;54813:6;54789:9;:31::i;:::-;54686:142:::0;;;:::o;49213:61::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;49258:8:::1;:6;:8::i;4817:87::-:0;4890:6;;-1:-1:-1;;;;;4890:6:0;;4817:87::o;70042:112::-;70090:4;70114:15;;;44593:1;70114:15;;;;;;;;:20;;;:32;:20;:32;;70042:112::o;70961:172::-;71020:4;71044:12;;;45039:1;71044:12;;;;:35;;-1:-1:-1;71060:19:0;;;45171:1;71060:19;;71044:35;:58;;;;-1:-1:-1;71083:19:0;;;45104:1;71083:19;;71044:58;:81;;;;-1:-1:-1;71106:19:0;;;45236:1;71106:19;;71037:88;70961:172;-1:-1:-1;;70961:172:0:o;56073:268::-;9933:1;10529:7;;:19;;10521:63;;;;-1:-1:-1;;;10521:63:0;;;;;;;:::i;:::-;9933:1;10662:7;:18;7414:8:::1;:6;:8::i;:::-;7413:9;7405:38;;;;-1:-1:-1::0;;;7405:38:0::1;;;;;;;:::i;:::-;56174:9:::2;56169:165;56193:6;:13;56189:1;:17;56169:165;;;56228:16;56247:6;56254:1;56247:9;;;;;;;;:::i;:::-;;;;;;;56228:28;;56271:1;:7;;;-1:-1:-1::0;;;;;56271:24:0::2;;56296:10;56308:2;56312:1;:9;;;56271:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;56213:121;56208:3;;;;;:::i;:::-;;;;56169:165;;;-1:-1:-1::0;;9889:1:0;10841:7;:22;-1:-1:-1;56073:268:0:o;48115:72::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48115:72:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50962:3526::-;9933:1;10529:7;;:19;;10521:63;;;;-1:-1:-1;;;10521:63:0;;;;;;;:::i;:::-;9933:1;10662:7;:18;7414:8:::1;:6;:8::i;:::-;7413:9;7405:38;;;;-1:-1:-1::0;;;7405:38:0::1;;;;;;;:::i;:::-;51202:15:::2;51182:6;:17;;;:35;51174:76;;;::::0;-1:-1:-1;;;51174:76:0;;19749:2:1;51174:76:0::2;::::0;::::2;19731:21:1::0;19788:2;19768:18;;;19761:30;19827;19807:18;;;19800:58;19875:18;;51174:76:0::2;19547:352:1::0;51174:76:0::2;51269:13;:28;51283:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;-1:-1:-1::0;;;;;51269:28:0::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;51269:28:0;;::::2;;51261:62;;;::::0;-1:-1:-1;;;51261:62:0;;20106:2:1;51261:62:0::2;::::0;::::2;20088:21:1::0;20145:2;20125:18;;;20118:30;-1:-1:-1;;;20164:18:1;;;20157:51;20225:18;;51261:62:0::2;19904:345:1::0;51261:62:0::2;51336:30;51352:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;51336:15;:30::i;:::-;51399:73;51416:9;;51399:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;51437:18:0::2;::::0;::::2;::::0;-1:-1:-1;51448:6:0;;-1:-1:-1;51437:18:0::2;;;:::i;:::-;;;;;;;;;;;;;51427:29;;;;;;51458:6;:13;;;;;;;;;;:::i;51399:73::-;51377:144;;;::::0;-1:-1:-1;;;51377:144:0;;26310:2:1;51377:144:0::2;::::0;::::2;26292:21:1::0;26349:2;26329:18;;;26322:30;-1:-1:-1;;;26368:18:1;;;26361:51;26429:18;;51377:144:0::2;26108:345:1::0;51377:144:0::2;51538:33;51557:13;::::0;;;::::2;::::0;::::2;;:::i;51538:33::-;51534:377;;;51588:23;51625:6;51614:18;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;51614:18:0;;::::2;::::0;;;;;;51655:21;;51614:18:::2;51655:21:::0;::::2;::::0;51614:18;;-1:-1:-1;51680:20:0;::::2;51655:45;51647:87;;;::::0;-1:-1:-1;;;51647:87:0;;27833:2:1;51647:87:0::2;::::0;::::2;27815:21:1::0;27872:2;27852:18;;;27845:30;27911:31;27891:18;;;27884:59;27960:18;;51647:87:0::2;27631:353:1::0;51647:87:0::2;51775:63;51792:9;;51775:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;51803:21:0;;::::2;::::0;;::::2;::::0;;;;;-1:-1:-1;51826:11:0::2;::::0;-1:-1:-1;51826:11:0;::::2;:6:::0;:11:::2;:::i;51775:63::-;51749:150;;;::::0;-1:-1:-1;;;51749:150:0;;28191:2:1;51749:150:0::2;::::0;::::2;28173:21:1::0;28230:2;28210:18;;;28203:30;-1:-1:-1;;;28249:18:1;;;28242:55;28314:18;;51749:150:0::2;27989:349:1::0;51749:150:0::2;51573:338;51534:377;44895:1;51927:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:33;;;51923:2558;;;51977:28;51991:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;51977;:28::i;:::-;44552:1;52028:11;::::0;;;::::2;::::0;::::2;;:::i;:::-;:24;;;52020:68;;;::::0;-1:-1:-1;;;52020:68:0;;28545:2:1;52020:68:0::2;::::0;::::2;28527:21:1::0;28584:2;28564:18;;;28557:30;28623:33;28603:18;;;28596:61;28674:18;;52020:68:0::2;28343:355:1::0;52020:68:0::2;52103:284;52134:9;::::0;::::2;;52162:11;;::::0;::::2;:6:::0;:11:::2;:::i;:::-;52192:13;;::::0;::::2;:6:::0;:13:::2;:::i;:::-;52224:15;::::0;;;::::2;::::0;::::2;;:::i;:::-;52258:12;::::0;::::2;;52289:15;::::0;::::2;;52323:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;52355:17;;::::0;::::2;:6:::0;:17:::2;:::i;:::-;52103:12;:284::i;:::-;51923:2558;;;44972:1;52409:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:32;;;52405:2076;;;52458:28;52472:13;::::0;;;::::2;::::0;::::2;;:::i;52458:28::-;44593:1;52509:11;::::0;;;::::2;::::0;::::2;;:::i;:::-;:23;;;52501:66;;;::::0;-1:-1:-1;;;52501:66:0;;30082:2:1;52501:66:0::2;::::0;::::2;30064:21:1::0;30121:2;30101:18;;;30094:30;30160:32;30140:18;;;30133:60;30210:18;;52501:66:0::2;29880:354:1::0;52501:66:0::2;52582:302;52612:9;::::0;::::2;;52640:11;;::::0;::::2;:6:::0;:11:::2;:::i;:::-;52679:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;52721;;::::0;::::2;:6:::0;:13:::2;:::i;:::-;52753:15;::::0;;;::::2;::::0;::::2;;:::i;:::-;52787:12;::::0;::::2;;52818:15;::::0;::::2;;52852:17;;::::0;::::2;:6:::0;:17:::2;:::i;:::-;52582:11;:302::i;52405:2076::-;45039:1;52906:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:23;;;52902:1579;;;52946:28;52960:13;::::0;;;::::2;::::0;::::2;;:::i;52946:28::-;52989:213;53015:9;::::0;::::2;;53043:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;53075:15;::::0;;;::::2;::::0;::::2;;:::i;:::-;53109:12;::::0;::::2;;53140:13;;::::0;::::2;53109:6:::0;53140:13:::2;:::i;:::-;53172:6;:15;;;52989:7;:213::i;52902:1579::-;45104:1;53224:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:30;;;53220:1261;;;53271:28;53285:13;::::0;;;::::2;::::0;::::2;;:::i;53271:28::-;53314:55;53325:9;::::0;::::2;;53336:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;53351:17;;::::0;::::2;:6:::0;:17:::2;:::i;:::-;53314:10;:55::i;53220:1261::-;45171:1;53391:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:30;;;53387:1094;;;53438:27;53455:6;:9;;;53438:16;:27::i;53387:1094::-;45236:1;53487:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:30;;;53483:998;;;53534:21;53545:6;:9;;;53534:10;:21::i;53483:998::-;45294:1;53577:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:23;;;53573:908;;;53617:28;53631:13;::::0;;;::::2;::::0;::::2;;:::i;53617:28::-;44638:1;53668:11;::::0;;;::::2;::::0;::::2;;:::i;:::-;:27;;;53660:74;;;::::0;-1:-1:-1;;;53660:74:0;;30441:2:1;53660:74:0::2;::::0;::::2;30423:21:1::0;30480:2;30460:18;;;30453:30;30519:34;30499:18;;;30492:62;-1:-1:-1;;;30570:18:1;;;30563:32;30612:19;;53660:74:0::2;30239:398:1::0;53660:74:0::2;53749:310;53772:9;::::0;::::2;;53800:11;;::::0;::::2;:6:::0;:11:::2;:::i;:::-;53830:13;;::::0;::::2;:6:::0;:13:::2;:::i;:::-;53862:15;::::0;;;::::2;::::0;::::2;;:::i;:::-;53896:12;::::0;::::2;;53927:15;::::0;::::2;;53961:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;53993:6;:12;;;54024:6;:20;;;53749:4;:310::i;53573:908::-;45385:1;54081:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:36;;;54077:404;;;54134:46;54151:9;::::0;::::2;;54162:17;;::::0;::::2;54151:6:::0;54162:17:::2;:::i;:::-;54134:16;:46::i;54077:404::-;45467:1;54202:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;:34;;;54198:283;;;54253:28;54267:13;::::0;;;::::2;::::0;::::2;;:::i;54253:28::-;54321:11;;::::0;::::2;:6:::0;:11:::2;:::i;:::-;-1:-1:-1::0;;;;;54304:28:0::2;:13;::::0;;;::::2;::::0;::::2;;:::i;:::-;-1:-1:-1::0;;;;;54304:28:0::2;;54296:61;;;::::0;-1:-1:-1;;;54296:61:0;;30844:2:1;54296:61:0::2;::::0;::::2;30826:21:1::0;30883:2;30863:18;;;30856:30;-1:-1:-1;;;30902:18:1;;;30895:50;30962:18;;54296:61:0::2;30642:344:1::0;54296:61:0::2;54372:44;54387:9;::::0;::::2;;54398:17;;::::0;::::2;54387:6:::0;54398:17:::2;:::i;:::-;54372:14;:44::i;54198:283::-;54449:20;::::0;-1:-1:-1;;;54449:20:0;;31193:2:1;54449:20:0::2;::::0;::::2;31175:21:1::0;31232:2;31212:18;;;31205:30;-1:-1:-1;;;31251:18:1;;;31244:40;31301:18;;54449:20:0::2;30991:334:1::0;54198:283:0::2;-1:-1:-1::0;;9889:1:0;10841:7;:22;-1:-1:-1;;;;50962:3526:0:o;50057:396::-;50507:11;;50293:6;;50507:11;;50499:55;;;;-1:-1:-1;;;50499:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;50057:396:0;;;;;;;;;;:::o;69687:219::-;69739:4;69776:9;69782:2;69776:5;:9::i;54496:182::-;9933:1;10529:7;;:19;;10521:63;;;;-1:-1:-1;;;10521:63:0;;;;;;;:::i;:::-;9933:1;10662:7;:18;7414:8:::1;:6;:8::i;:::-;7413:9;7405:38;;;;-1:-1:-1::0;;;7405:38:0::1;;;;;;;:::i;:::-;54590:9:::2;54585:86;54605:14:::0;;::::2;54585:86;;;54641:18;54652:3;;54656:1;54652:6;;;;;;;:::i;:::-;;;;;;;54641:10;:18::i;:::-;54621:3:::0;::::2;::::0;::::2;:::i;:::-;;;;54585:86;;54881:480:::0;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;54976:13:::1;54986:2;69966:4:::0;69990:15;;;:11;:15;;;;;:20;;;:36;:20;44638:1;69990:36;;69914:120;54976:13:::1;54968:37;;;::::0;-1:-1:-1;;;54968:37:0;;31532:2:1;54968:37:0::1;::::0;::::1;31514:21:1::0;31571:2;31551:18;;;31544:30;-1:-1:-1;;;31590:18:1;;;31583:41;31641:18;;54968:37:0::1;31330:335:1::0;54968:37:0::1;55024:16;55037:2;55024:12;:16::i;:::-;55016:37;;;;-1:-1:-1::0;;;55016:37:0::1;;;;;;;:::i;:::-;55064:21;55088:15:::0;;;:11:::1;:15;::::0;;;;55121:8;55116:95:::1;;55181:10:::0;;55146:53:::1;::::0;55162:2;;55174:4:::1;::::0;-1:-1:-1;;;;;55181:10:0::1;;55146:15;:53::i;:::-;55231:12;::::0;::::1;::::0;;55245:9;::::1;::::0;55256:12:::1;::::0;::::1;::::0;55221:48:::1;::::0;-1:-1:-1;;;;;55231:12:0;;::::1;::::0;55245:9:::1;::::0;55221::::1;:48::i;:::-;55282:10;::::0;::::1;:29:::0;;-1:-1:-1;;55282:29:0::1;::::0;::::1;::::0;;55327:26:::1;::::0;55345:2;;-1:-1:-1;;;;;;;;;;;55327:26:0;::::1;::::0;55282:10;;55327:26:::1;:::i;:::-;;;;;;;;54957:404;54881:480:::0;;:::o;55369:696::-;9933:1;10529:7;;:19;;10521:63;;;;-1:-1:-1;;;10521:63:0;;;;;;;:::i;:::-;9933:1;10662:7;:18;7414:8:::1;:6;:8::i;:::-;7413:9;7405:38;;;;-1:-1:-1::0;;;7405:38:0::1;;;;;;;:::i;:::-;55492:15:::2;55477:3;:12;;;:30;55469:59;;;::::0;-1:-1:-1;;;55469:59:0;;33471:2:1;55469:59:0::2;::::0;::::2;33453:21:1::0;33510:2;33490:18;;;33483:30;-1:-1:-1;;;33529:18:1;;;33522:46;33585:18;;55469:59:0::2;33269:340:1::0;55469:59:0::2;55561:68;55578:9;55610:3;55599:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;55589:26;;;;;;55617:3;:11;;;55561:16;:68::i;:::-;55539:133;;;::::0;-1:-1:-1;;;55539:133:0;;35218:2:1;55539:133:0::2;::::0;::::2;35200:21:1::0;35257:2;35237:18;;;35230:30;-1:-1:-1;;;35276:18:1;;;35269:45;35331:18;;55539:133:0::2;35016:339:1::0;55539:133:0::2;55690:9;55685:156;55709:3;:9;;;:16;55705:1;:20;55685:156;;;55747:3;:9;;;55757:1;55747:12;;;;;;;;:::i;:::-;;;;;;;:18;;;-1:-1:-1::0;;;;;55747:35:0::2;;55783:10;55795:3;:11;;;55808:3;:9;;;55818:1;55808:12;;;;;;;;:::i;:::-;;;;;;;:20;;;55747:82;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;55727:3;;;;;:::i;:::-;;;;55685:156;;;;55858:9;55853:150;55877:3;:7;;;:14;55873:1;:18;55853:150;;;55913:3;:7;;;55921:1;55913:10;;;;;;;;:::i;:::-;;;;;;;:16;;;-1:-1:-1::0;;;;;55913:33:0::2;;55947:3;:11;;;55960:10;55972:3;:7;;;55980:1;55972:10;;;;;;;;:::i;:::-;;;;;;;:18;;;55913:78;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;55893:3;;;;;:::i;:::-;;;;55853:150;;;;56020:37;56030:3;56035:9;56046:10;56020:37;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;9889:1:0;10841:7;:22;55369:696::o;70398:124::-;70453:4;70477:15;;;:11;:15;;;;;:22;;;;;;:37;:22;:37;;70398:124::o;49689:360::-;50507:11;;49896:6;;50507:11;;50499:55;;;;-1:-1:-1;;;50499:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;49689:360:0;;;;;;;;:::o;5717:192::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5806:22:0;::::1;5798:73;;;::::0;-1:-1:-1;;;5798:73:0;;36073:2:1;5798:73:0::1;::::0;::::1;36055:21:1::0;36112:2;36092:18;;;36085:30;36151:34;36131:18;;;36124:62;-1:-1:-1;;;36202:18:1;;;36195:36;36248:19;;5798:73:0::1;35871:402:1::0;5798:73:0::1;5882:19;5892:8;5882:9;:19::i;:::-;5717:192:::0;:::o;48894:258::-;3765:10;5037:7;:5;:7::i;:::-;-1:-1:-1;;;;;5037:23:0;;5029:68;;;;-1:-1:-1;;;5029:68:0;;;;;;;:::i;:::-;48975:6:::1;48971:124;;;-1:-1:-1::0;;;;;49005:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;48998:26;;-1:-1:-1;;48998:26:0::1;::::0;;48971:124:::1;;;-1:-1:-1::0;;;;;49057:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;:26;;-1:-1:-1;;49057:26:0::1;49079:4;49057:26;::::0;;48971:124:::1;49110:34;::::0;;-1:-1:-1;;;;;36464:32:1;;36446:51;;36540:14;;36533:22;36528:2;36513:18;;36506:50;49110:34:0::1;::::0;36419:18:1;49110:34:0::1;;;;;;;48894:258:::0;;:::o;68178:1266::-;68255:4;68280:13;68287:5;68280:6;:13::i;:::-;68272:38;;;;-1:-1:-1;;;68272:38:0;;36769:2:1;68272:38:0;;;36751:21:1;36808:2;36788:18;;;36781:30;-1:-1:-1;;;36827:18:1;;;36820:42;36879:18;;68272:38:0;36567:336:1;68272:38:0;68328:9;68323:1092;68347:27;;;;:20;:27;;;;;;68343:31;;68323:1092;;;68396:19;68418:22;;;:15;:22;;;;;;;;:25;;;;;;;;68462:6;;;;:20;:6;68458:946;;;;;68535:6;;;;:19;:6;45670:1;68535:19;68531:873;;;68595:7;;;68658:9;;;68648:20;;-1:-1:-1;;;68648:20:0;;-1:-1:-1;;;;;68595:7:0;;;;68648:29;;;68595:7;;68648:9;;:20;;;;896:25:1;;;884:2;869:18;;750:177;68648:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;68648:29:0;;:166;;;;-1:-1:-1;68717:9:0;;;;68703:24;;-1:-1:-1;;;68703:24:0;;68739:4;;-1:-1:-1;;;;;68703:13:0;;;;;:24;;;;896:25:1;;;884:2;869:18;;750:177;68703:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;68703:41:0;;:110;;;-1:-1:-1;68773:40:0;;-1:-1:-1;;;68773:40:0;;-1:-1:-1;;;;;37394:15:1;;;68773:40:0;;;37376:34:1;68807:4:0;37426:18:1;;;37419:43;68773:18:0;;;;;37311::1;;68773:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68622:322;;;;;;68919:5;68912:12;;;;;;;68622:322;68556:403;68531:873;;;68969:6;;;;:20;:6;45726:1;68969:20;68965:439;;;69032:7;;69118:8;;;;69032:7;69104:9;;;69085:29;;-1:-1:-1;;;69085:29:0;;-1:-1:-1;;;;;69032:7:0;;;;;;69085:11;;:29;;69097:5;;69085:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;:106;;;;-1:-1:-1;69151:40:0;;-1:-1:-1;;;69151:40:0;;-1:-1:-1;;;;;37394:15:1;;;69151:40:0;;;37376:34:1;69185:4:0;37426:18:1;;;37419:43;69151:18:0;;;;;37311::1;;69151:40:0;37164:304:1;68965:439:0;69361:27;;-1:-1:-1;;;69361:27:0;;38393:2:1;69361:27:0;;;38375:21:1;38432:2;38412:18;;;38405:30;-1:-1:-1;;;38451:18:1;;;38444:47;38508:18;;69361:27:0;38191:341:1;68965:439:0;-1:-1:-1;68376:3:0;;;;:::i;:::-;;;;68323:1092;;;-1:-1:-1;69432:4:0;;68178:1266;-1:-1:-1;;;68178:1266:0:o;70284:106::-;70333:4;70357:15;;;:11;:15;;;;;:20;;;;;:25;;;70284:106::o;8147:120::-;7691:8;:6;:8::i;:::-;7683:41;;;;-1:-1:-1;;;7683:41:0;;38739:2:1;7683:41:0;;;38721:21:1;38778:2;38758:18;;;38751:30;-1:-1:-1;;;38797:18:1;;;38790:50;38857:18;;7683:41:0;38537:344:1;7683:41:0;8206:7:::1;:15:::0;;-1:-1:-1;;;;8206:15:0::1;::::0;;8237:22:::1;3765:10:::0;8246:12:::1;8237:22;::::0;-1:-1:-1;;;;;3523:32:1;;;3505:51;;3493:2;3478:18;8237:22:0::1;;;;;;;8147:120::o:0;5917:173::-;5992:6;;;-1:-1:-1;;;;;6009:17:0;;;-1:-1:-1;;;;;;6009:17:0;;;;;;;6042:40;;5992:6;;;6009:17;5992:6;;6042:40;;5973:16;;6042:40;5962:128;5917:173;:::o;39680:231::-;39758:7;39779:17;39798:18;39820:27;39831:4;39837:9;39820:10;:27::i;:::-;39778:69;;;;39858:18;39870:5;39858:11;:18::i;:::-;-1:-1:-1;39894:9:0;39680:231;-1:-1:-1;;;39680:231:0:o;66629:436::-;66751:11;66747:50;;66629:436;;;:::o;66747:50::-;-1:-1:-1;;;;;66815:16:0;;66807:58;;;;-1:-1:-1;;;66807:58:0;;39473:2:1;66807:58:0;;;39455:21:1;39512:2;39492:18;;;39485:30;39551:31;39531:18;;;39524:59;39600:18;;66807:58:0;39271:353:1;66807:58:0;-1:-1:-1;;;;;66582:31:0;;66876:182;;66916:21;;-1:-1:-1;;;66916:21:0;;;;;896:25:1;;;66916:4:0;-1:-1:-1;;;;;66916:13:0;;;;869:18:1;;66916:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66952:28:0;;-1:-1:-1;;;;;66952:20:0;;;-1:-1:-1;66952:28:0;;;;;-1:-1:-1;66973:6:0;;66952:28;;;;66973:6;66952:20;:28;;;;;;;;;;;;;;;;;;;;;54686:142;;;:::o;66876:182::-;67013:33;-1:-1:-1;;;;;67013:21:0;;67035:2;67039:6;67013:21;:33::i;7888:118::-;7414:8;:6;:8::i;:::-;7413:9;7405:38;;;;-1:-1:-1;;;7405:38:0;;;;;;;:::i;:::-;7958:4:::1;7948:14:::0;;-1:-1:-1;;;;7948:14:0::1;-1:-1:-1::0;;;7948:14:0::1;::::0;;7978:20:::1;7985:12;3765:10:::0;;3685:98;56493:133;56565:15;;;;;;;:34;;-1:-1:-1;45554:2:0;56584:15;;;;56565:34;56557:61;;;;-1:-1:-1;;;56557:61:0;;39831:2:1;56557:61:0;;;39813:21:1;39870:2;39850:18;;;39843:30;-1:-1:-1;;;39889:18:1;;;39882:44;39943:18;;56557:61:0;39629:338:1;56368:117:0;-1:-1:-1;;;;;56440:20:0;;56450:10;56440:20;56432:45;;;;-1:-1:-1;;;56432:45:0;;40174:2:1;56432:45:0;;;40156:21:1;40213:2;40193:18;;;40186:30;-1:-1:-1;;;40232:18:1;;;40225:42;40284:18;;56432:45:0;39972:336:1;60933:1147:0;61217:10;61224:2;61217:6;:10::i;:::-;61216:11;61208:36;;;;-1:-1:-1;;;61208:36:0;;40515:2:1;61208:36:0;;;40497:21:1;40554:2;40534:18;;;40527:30;-1:-1:-1;;;40573:18:1;;;40566:42;40625:18;;61208:36:0;40313:336:1;61208:36:0;61274:15;61263:8;:26;61255:61;;;;-1:-1:-1;;;61255:61:0;;40856:2:1;61255:61:0;;;40838:21:1;40895:2;40875:18;;;40868:30;-1:-1:-1;;;40914:18:1;;;40907:52;40976:18;;61255:61:0;40654:346:1;61255:61:0;61329:23;61341:2;61345:6;;61329:11;:23::i;:::-;61363:40;61379:2;61383:6;61391:5;61398:4;61363:15;:40::i;:::-;-1:-1:-1;;;;;66582:31:0;;61416:258;;61473:9;61464:5;:18;61456:49;;;;-1:-1:-1;;;61456:49:0;;;;;;;:::i;:::-;61520:4;-1:-1:-1;;;;;61520:12:0;;61540:5;61520:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61416:258;;;61608:54;-1:-1:-1;;;;;61608:25:0;;61634:5;61649:4;61656:5;61608:25;:54::i;:::-;61704:265;;;;;;;;61737:6;-1:-1:-1;;;;;61704:265:0;;;;;61765:5;-1:-1:-1;;;;;61704:265:0;;;;;61795:8;-1:-1:-1;;;;;61704:265:0;;;;;61825:5;61704:265;;;;61855:5;61704:265;;;;61949:8;61704:265;;;;44552:1;61704:265;;;;;;44728:1;61704:265;;;;;61686:11;:15;61698:2;61686:15;;;;;;;;;;;:283;;;;;;;;;;;;;-1:-1:-1;;;;;61686:283:0;;;;;-1:-1:-1;;;;;61686:283:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61686:283:0;;;;;-1:-1:-1;;;;;61686:283:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61686:283:0;;;;;-1:-1:-1;;;;;61686:283:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62003:2;-1:-1:-1;;;;;;;;;;;62007:11:0;:15;62019:2;62007:15;;;;;;;;;;;61985:38;;;;;;:::i;:::-;;;;;;;;62036:36;62057:2;62061:10;62036:20;:36::i;:::-;60933:1147;;;;;;;;;:::o;59860:1018::-;60143:10;60150:2;60143:6;:10::i;:::-;60142:11;60134:48;;;;-1:-1:-1;;;60134:48:0;;41821:2:1;60134:48:0;;;41803:21:1;41860:2;41840:18;;;41833:30;-1:-1:-1;;;41879:18:1;;;41872:54;41943:18;;60134:48:0;41619:348:1;60134:48:0;60212:15;60201:8;:26;60193:60;;;;-1:-1:-1;;;60193:60:0;;42174:2:1;60193:60:0;;;42156:21:1;42213:2;42193:18;;;42186:30;-1:-1:-1;;;42232:18:1;;;42225:51;42293:18;;60193:60:0;41972:345:1;60193:60:0;-1:-1:-1;;;;;66582:31:0;;60264:56;;;;-1:-1:-1;;;60264:56:0;;42524:2:1;60264:56:0;;;42506:21:1;42563:2;42543:18;;;42536:30;-1:-1:-1;;;42582:18:1;;;42575:53;42645:18;;60264:56:0;42322:347:1;60264:56:0;60333:23;60345:2;60349:6;;60333:11;:23::i;:::-;60367:40;60383:2;60387:6;60395:5;60402:4;60367:15;:40::i;:::-;60418:54;-1:-1:-1;;;;;60418:25:0;;60444:5;60459:4;60466:5;60418:25;:54::i;:::-;60503:264;;;;;;;;60536:6;-1:-1:-1;;;;;60503:264:0;;;;;60564:5;-1:-1:-1;;;;;60503:264:0;;;;;60594:8;-1:-1:-1;;;;;60503:264:0;;;;;60624:5;60503:264;;;;60654:5;60503:264;;;;60747:8;60503:264;;;;44593:1;60503:264;;;;;;44728:1;60503:264;;;;;60485:11;:15;60497:2;60485:15;;;;;;;;;;;:282;;;;;;;;;;;;;-1:-1:-1;;;;;60485:282:0;;;;;-1:-1:-1;;;;;60485:282:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60485:282:0;;;;;-1:-1:-1;;;;;60485:282:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60485:282:0;;;;;-1:-1:-1;;;;;60485:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60801:2;-1:-1:-1;;;;;;;;;;;60805:11:0;:15;60817:2;60805:15;;;;;;;;;;;60783:38;;;;;;:::i;56970:1002::-;57183:10;57190:2;57183:6;:10::i;:::-;57182:11;57174:50;;;;-1:-1:-1;;;57174:50:0;;42876:2:1;57174:50:0;;;42858:21:1;42915:2;42895:18;;;42888:30;42954:28;42934:18;;;42927:56;43000:18;;57174:50:0;42674:350:1;57174:50:0;57254:15;57243:8;:26;57235:72;;;;-1:-1:-1;;;57235:72:0;;43231:2:1;57235:72:0;;;43213:21:1;43270:2;43250:18;;;43243:30;43309:34;43289:18;;;43282:62;-1:-1:-1;;;43360:18:1;;;43353:31;43401:19;;57235:72:0;43029:397:1;57235:72:0;57318:23;57330:2;57334:6;;57318:11;:23::i;:::-;-1:-1:-1;;;;;66582:31:0;;57354:258;;57411:9;57402:5;:18;57394:49;;;;-1:-1:-1;;;57394:49:0;;;;;;;:::i;:::-;57458:4;-1:-1:-1;;;;;57458:12:0;;57478:5;57458:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57354:258;;;57546:54;-1:-1:-1;;;;;57546:25:0;;57572:5;57587:4;57594:5;57546:25;:54::i;:::-;57642:268;;;;;;;;57683:1;-1:-1:-1;;;;;57642:268:0;;;;;57707:5;-1:-1:-1;;;;;57642:268:0;;;;;57737:8;-1:-1:-1;;;;;57642:268:0;;;;;57767:5;57642:268;;;;57797:5;57642:268;;;;57890:8;57642:268;;;;44593:1;57642:268;;;;;;44684:1;57642:268;;;;;57624:11;:15;57636:2;57624:15;;;;;;;;;;;:286;;;;;;;;;;;;;-1:-1:-1;;;;;57624:286:0;;;;;-1:-1:-1;;;;;57624:286:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57624:286:0;;;;;-1:-1:-1;;;;;57624:286:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57624:286:0;;;;;-1:-1:-1;;;;;57624:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57944:2;-1:-1:-1;;;;;;;;;;;57948:11:0;:15;57960:2;57948:15;;;;;;;;;;;57926:38;;;;;;:::i;:::-;;;;;;;;56970:1002;;;;;;;:::o;59222:630::-;59364:9;59370:2;59364:5;:9::i;:::-;59356:39;;;;-1:-1:-1;;;59356:39:0;;43633:2:1;59356:39:0;;;43615:21:1;43672:2;43652:18;;;43645:30;-1:-1:-1;;;43691:18:1;;;43684:47;43748:18;;59356:39:0;43431:341:1;59356:39:0;59406:21;59430:15;;;:11;:15;;;;;59464:16;59442:2;59464:12;:16::i;:::-;59456:37;;;;-1:-1:-1;;;59456:37:0;;;;;;;:::i;:::-;59512:28;59529:2;59533:6;59512:16;:28::i;:::-;59504:60;;;;-1:-1:-1;;;59504:60:0;;43979:2:1;59504:60:0;;;43961:21:1;44018:2;43998:18;;;43991:30;-1:-1:-1;;;44037:18:1;;;44030:49;44096:18;;59504:60:0;43777:343:1;59504:60:0;70582:4;70625:15;;;:11;:15;;;;;:24;;;70606:15;:43;59575:44;;;;-1:-1:-1;;;59575:44:0;;44327:2:1;59575:44:0;;;44309:21:1;44366:2;44346:18;;;44339:30;-1:-1:-1;;;44385:18:1;;;44378:47;44442:18;;59575:44:0;44125:341:1;59575:44:0;59632:10;;;:24;;-1:-1:-1;;59632:24:0;;;;;59667:19;;-1:-1:-1;;;;;59667:19:0;;;-1:-1:-1;;;;;;59667:19:0;;;;;;;;;44728:1;59725:9;;;;59697:44;;59713:2;;59680:6;;59725:9;;;;59697:15;:44::i;:::-;59777:2;-1:-1:-1;;;;;;;;;;;59781:11:0;:15;59793:2;59781:15;;;;;;;;;;;59759:38;;;;;;:::i;:::-;;;;;;;;59808:36;59829:2;59833:10;59808:20;:36::i;58269:327::-;58335:9;58341:2;58335:5;:9::i;:::-;:29;;;;;58348:16;58361:2;58348:12;:16::i;:::-;58327:54;;;;-1:-1:-1;;;58327:54:0;;;;;;;:::i;:::-;58392:21;58416:15;;;:11;:15;;;;;;;;58444:10;;;:29;;-1:-1:-1;;58444:29:0;;;;;58494:12;;;;-1:-1:-1;58508:9:0;;;58519:12;;;;58484:48;;-1:-1:-1;;;;;58494:12:0;;;;58508:9;;58484;:48::i;:::-;58568:2;-1:-1:-1;;;;;;;;;;;58572:11:0;:15;58584:2;58572:15;;;;;;;;;;;58550:38;;;;;;:::i;:::-;;;;;;;;58316:280;58269:327;:::o;58604:590::-;58673:10;58702:9;58708:2;58702:5;:9::i;:::-;:29;;;;;58715:16;58728:2;58715:12;:16::i;:::-;58694:54;;;;-1:-1:-1;;;58694:54:0;;;;;;;:::i;:::-;58766:9;58761:393;58785:24;;;;:20;:24;;;;;;58781:28;;58761:393;;;58831:19;58853;;;:15;:19;;;;;;;;:22;;;;;;;;58894:6;;;;:19;:6;45670:1;58894:19;58890:253;;;58954:7;;;58999:9;;;58989:20;;-1:-1:-1;;;58989:20:0;;-1:-1:-1;;;;;58954:7:0;;;;58989:30;;;58954:7;;58989:9;;:20;;;;896:25:1;;;884:2;869:18;;750:177;58989:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58989:30:0;;58981:68;;;;-1:-1:-1;;;58981:68:0;;45014:2:1;58981:68:0;;;44996:21:1;45053:2;45033:18;;;45026:30;-1:-1:-1;;;45072:18:1;;;45065:55;45137:18;;58981:68:0;44812:349:1;58981:68:0;58915:150;58890:253;;;59090:37;;-1:-1:-1;;;59090:37:0;;45368:2:1;59090:37:0;;;45350:21:1;45407:2;45387:18;;;45380:30;45446:29;45426:18;;;45419:57;45493:18;;59090:37:0;45166:351:1;58890:253:0;-1:-1:-1;58811:3:0;;;;:::i;:::-;;;;58761:393;;;;59166:20;59183:2;59166:16;:20::i;:::-;58645:549;58604:590;:::o;62088:2501::-;50619:11;:18;;-1:-1:-1;;50619:18:0;50633:4;50619:18;;;45786:3:::1;62398:25:::0;::::1;62390:61;;;::::0;-1:-1:-1;;;62390:61:0;;45724:2:1;62390:61:0::1;::::0;::::1;45706:21:1::0;45763:2;45743:18;;;45736:30;-1:-1:-1;;;45782:18:1;;;45775:53;45845:18;;62390:61:0::1;45522:347:1::0;62390:61:0::1;-1:-1:-1::0;;;;;66582:31:0;;62464:258:::1;;62521:9;62512:5;:18;62504:49;;;;-1:-1:-1::0;;;62504:49:0::1;;;;;;;:::i;:::-;62568:4;-1:-1:-1::0;;;;;62568:12:0::1;;62588:5;62568:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;62464:258;;;62656:54;-1:-1:-1::0;;;;;62656:25:0;::::1;62682:5:::0;62697:4:::1;62704:5:::0;62656:25:::1;:54::i;:::-;62738:13;62748:2;69966:4:::0;69990:15;;;:11;:15;;;;;:20;;;:36;:20;44638:1;69990:36;;69914:120;62738:13:::1;62734:1794;;;62768:21;62792:15:::0;;;:11:::1;:15;::::0;;;;62830:10;;-1:-1:-1;;;;;62830:20:0;;::::1;:10:::0;::::1;:20;62822:54;;;::::0;-1:-1:-1;;;62822:54:0;;46076:2:1;62822:54:0::1;::::0;::::1;46058:21:1::0;46115:2;46095:18;;;46088:30;-1:-1:-1;;;46134:18:1;;;46127:51;46195:18;;62822:54:0::1;45874:345:1::0;62822:54:0::1;62918:10;::::0;::::1;::::0;::::1;::::0;::::1;:25;:10;:25:::0;62910:54:::1;;;;-1:-1:-1::0;;;62910:54:0::1;;;;;;;:::i;:::-;63002:15;62987:3;:12;;;:30;62979:56;;;;-1:-1:-1::0;;;62979:56:0::1;;;;;;;:::i;:::-;45786:3;63113:19;;63101:3;:9;;;:31;;;;:::i;:::-;63100:45;;;;:::i;:::-;63087:3;:9;;;:59;;;;:::i;:::-;63078:5;:68;;63052:147;;;::::0;-1:-1:-1;;;63052:147:0;;47641:2:1;63052:147:0::1;::::0;::::1;47623:21:1::0;47680:2;47660:18;;;47653:30;-1:-1:-1;;;47699:18:1;;;47692:47;47756:18;;63052:147:0::1;47439:341:1::0;63052:147:0::1;63216:17;45786:3;63237:21;63245:13:::0;63237:5;:21:::1;:::i;:::-;63236:35;;;;:::i;:::-;63306:9;::::0;::::1;::::0;63317:12:::1;::::0;::::1;::::0;63216:55;;-1:-1:-1;63286:56:0::1;::::0;63296:8;;-1:-1:-1;;;;;63306:9:0::1;::::0;63317:24:::1;::::0;63216:55;;63317:24:::1;:::i;:::-;63286:9;:56::i;:::-;63382:9;::::0;::::1;::::0;63393:12:::1;::::0;::::1;::::0;63378:2;;63362:56:::1;::::0;-1:-1:-1;;;;;63382:9:0;;::::1;::::0;63393:24:::1;::::0;63408:9;;63393:24:::1;:::i;:::-;63362:56;;;;;;;:::i;:::-;;;;;;;;63435:9;::::0;::::1;:17:::0;;-1:-1:-1;;;;;;63435:17:0::1;-1:-1:-1::0;;;;;63435:17:0;::::1;;::::0;;63467:9:::1;::::0;::::1;:17:::0;;;63514::::1;63522:9:::0;63467:17;63514::::1;:::i;:::-;63499:12;::::0;::::1;:32:::0;63592:12:::1;::::0;::::1;::::0;63570:18:::1;::::0;63552:36:::1;::::0;:15:::1;:36;:::i;:::-;:52;63548:127;;63641:18;;63625:3;:12;;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;63548:127:0::1;62753:933;;62734:1794;;;63716:10;63723:2;63716:6;:10::i;:::-;63715:11;63707:48;;;::::0;-1:-1:-1;;;63707:48:0;;48117:2:1;63707:48:0::1;::::0;::::1;48099:21:1::0;48156:2;48136:18;;;48129:30;-1:-1:-1;;;48175:18:1;;;48168:54;48239:18;;63707:48:0::1;47915:348:1::0;63707:48:0::1;63787:10;63778:5;:19;;63770:58;;;::::0;-1:-1:-1;;;63770:58:0;;48470:2:1;63770:58:0::1;::::0;::::1;48452:21:1::0;48509:2;48489:18;;;48482:30;48548:28;48528:18;;;48521:56;48594:18;;63770:58:0::1;48268:350:1::0;63770:58:0::1;63862:15;63851:8;:26;63843:52;;;;-1:-1:-1::0;;;63843:52:0::1;;;;;;;:::i;:::-;63977:18;::::0;63932:8;;;;63959:36:::1;::::0;:15:::1;:36;:::i;:::-;:48;63955:120;;64041:18;::::0;64028:31:::1;::::0;;::::1;:::i;:::-;;;63955:120;64109:305;;;;;;;;64146:6;-1:-1:-1::0;;;;;64109:305:0::1;;;;;64178:5;-1:-1:-1::0;;;;;64109:305:0::1;;;;;64212:8;-1:-1:-1::0;;;;;64109:305:0::1;;;;;64246:5;64109:305;;;;64280:5;64109:305;;;;64314:9;64109:305;;;;44638:1;64109:305;;;;;;44684:1;64109:305;;;;::::0;64091:11:::1;:15;64103:2;64091:15;;;;;;;;;;;:323;;;;;;;;;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;-1:-1:-1::0;;;;;64091:323:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64429:23;64441:2;64445:6;;64429:11;:23::i;:::-;64467:49;64483:2;64487:6;64503:4;64510:5;64467:15;:49::i;:::-;63692:836;62734:1794;64561:2;-1:-1:-1::0;;;;;;;;;;;64565:11:0::1;:15;64577:2;64565:15;;;;;;;;;;;64543:38;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;50660:11:0;:19;;-1:-1:-1;;50660:19:0;;;-1:-1:-1;;;;;;;;62088:2501:0:o;64597:213::-;64695:15;;;;:11;:15;;;;;:24;;;64722:15;-1:-1:-1;64687:74:0;;;;-1:-1:-1;;;64687:74:0;;48825:2:1;64687:74:0;;;48807:21:1;48864:2;48844:18;;;48837:30;-1:-1:-1;;;48883:18:1;;;48876:49;48942:18;;64687:74:0;48623:343:1;64687:74:0;64772:30;64787:2;64791:10;64818:450;64914:13;64924:2;69966:4;69990:15;;;:11;:15;;;;;:20;;;:36;:20;44638:1;69990:36;;69914:120;64914:13;64906:48;;;;-1:-1:-1;;;64906:48:0;;49173:2:1;64906:48:0;;;49155:21:1;49212:2;49192:18;;;49185:30;-1:-1:-1;;;49231:18:1;;;49224:52;49293:18;;64906:48:0;48971:346:1;64906:48:0;64973:16;64986:2;64973:12;:16::i;:::-;64965:45;;;;-1:-1:-1;;;64965:45:0;;;;;;;:::i;:::-;65021:21;65045:15;;;:11;:15;;;;;;;65073:10;;;:24;;-1:-1:-1;;65073:24:0;;;;;65113:38;;65057:2;;-1:-1:-1;;;;;;;;;;;65113:38:0;;;65045:15;;65113:38;:::i;:::-;;;;;;;;65197:9;;;;;65162:51;;65178:2;;65190:4;;-1:-1:-1;;;;;65197:9:0;;;;65162:15;:51::i;:::-;65224:36;65245:2;65249:10;65224:20;:36::i;58009:213::-;58061:21;58085:15;;;:11;:15;;;;;58119:9;;;;-1:-1:-1;;;;;58119:9:0;58132:10;58119:23;;:40;;-1:-1:-1;70582:4:0;70625:15;;;:11;:15;;;;;:24;;;70606:15;:43;;58146:13;58111:72;;;;-1:-1:-1;;;58111:72:0;;49524:2:1;58111:72:0;;;49506:21:1;49563:2;49543:18;;;49536:30;-1:-1:-1;;;49582:18:1;;;49575:49;49641:18;;58111:72:0;49322:343:1;58111:72:0;58194:20;58211:2;58194:16;:20::i;67073:1036::-;67215:18;67236:27;;;:20;:27;;;;;;;67274:828;67298:10;67294:1;:14;67274:828;;;67330:19;67352:22;;;:15;:22;;;;;;;;:25;;;;;;;;67396:6;;;;:20;:6;67392:699;;67441:6;67437:315;;;-1:-1:-1;;;;;67543:16:0;;;;;;:39;;-1:-1:-1;;;;;;67563:19:0;;67577:4;67563:19;;67543:39;67509:161;;;;-1:-1:-1;;;67509:161:0;;49872:2:1;67509:161:0;;;49854:21:1;49911:2;49891:18;;;49884:30;49950:34;49930:18;;;49923:62;-1:-1:-1;;;50001:18:1;;;49994:34;50045:19;;67509:161:0;49670:400:1;67509:161:0;67703:7;;67693:39;;-1:-1:-1;;;67693:39:0;;-1:-1:-1;;;;;67703:7:0;;;;67693:23;;:39;;67717:2;;67721:10;;;;;67693:39;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67437:315;67392:699;;;67777:6;;;;:19;:6;45670:1;67777:19;67773:318;;;67825:7;;;67861:9;;;67817:54;;-1:-1:-1;;;67817:54:0;;-1:-1:-1;;;;;67825:7:0;;;;67817:33;;:54;;67851:4;;67857:2;;67817:54;;;:::i;67773:318::-;67897:6;;;;:20;:6;45726:1;67897:20;67893:198;;;67947:7;;;67983:9;;;67994:8;;;;67938:69;;-1:-1:-1;;;67938:69:0;;-1:-1:-1;;;;;51578:15:1;;;67938:69:0;;;51560:34:1;51630:15;;;51610:18;;;51603:43;51662:18;;;51655:34;;;;51705:18;;;51698:34;;;;51540:3;51748:19;;;51741:32;-1:-1:-1;51789:19:1;;;51782:30;67947:7:0;;;67938:34;;51829:19:1;;67938:69:0;51227:627:1;67893:198:0;-1:-1:-1;67310:3:0;;;;:::i;:::-;;;;67274:828;;;;67204:905;67073:1036;;;;:::o;37570:1308::-;37651:7;37660:12;37885:9;:16;37905:2;37885:22;37881:990;;;38181:4;38166:20;;38160:27;38231:4;38216:20;;38210:27;38289:4;38274:20;;38268:27;37924:9;38260:36;38332:25;38343:4;38260:36;38160:27;38210;38332:10;:25::i;:::-;38325:32;;;;;;;;;37881:990;38379:9;:16;38399:2;38379:22;38375:496;;;38654:4;38639:20;;38633:27;38705:4;38690:20;;38684:27;38747:23;38758:4;38633:27;38684;38747:10;:23::i;:::-;38740:30;;;;;;;;38375:496;-1:-1:-1;38819:1:0;;-1:-1:-1;38823:35:0;38375:496;37570:1308;;;;;:::o;35841:643::-;35919:20;35910:5;:29;;;;;;;;:::i;:::-;;35906:571;;;35841:643;:::o;35906:571::-;36017:29;36008:5;:38;;;;;;;;:::i;:::-;;36004:473;;;36063:34;;-1:-1:-1;;;36063:34:0;;52193:2:1;36063:34:0;;;52175:21:1;52232:2;52212:18;;;52205:30;-1:-1:-1;;;52251:18:1;;;52244:54;52315:18;;36063:34:0;51991:348:1;36004:473:0;36128:35;36119:5;:44;;;;;;;;:::i;:::-;;36115:362;;;36180:41;;-1:-1:-1;;;36180:41:0;;52546:2:1;36180:41:0;;;52528:21:1;52585:2;52565:18;;;52558:30;52624:33;52604:18;;;52597:61;52675:18;;36180:41:0;52344:355:1;36115:362:0;36252:30;36243:5;:39;;;;;;;;:::i;:::-;;36239:238;;;36299:44;;-1:-1:-1;;;36299:44:0;;52906:2:1;36299:44:0;;;52888:21:1;52945:2;52925:18;;;52918:30;52984:34;52964:18;;;52957:62;-1:-1:-1;;;53035:18:1;;;53028:32;53077:19;;36299:44:0;52704:398:1;36239:238:0;36374:30;36365:5;:39;;;;;;;;:::i;:::-;;36361:116;;;36421:44;;-1:-1:-1;;;36421:44:0;;53309:2:1;36421:44:0;;;53291:21:1;53348:2;53328:18;;;53321:30;53387:34;53367:18;;;53360:62;-1:-1:-1;;;53438:18:1;;;53431:32;53480:19;;36421:44:0;53107:398:1;26552:211:0;26669:86;26689:5;26719:23;;;26744:2;26748:5;26696:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26696:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;26696:58:0;-1:-1:-1;;;;;;26696:58:0;;;;;;;;;;26669:19;:86::i;56634:307::-;56727:17;56719:42;;;;-1:-1:-1;;;56719:42:0;;53712:2:1;56719:42:0;;;53694:21:1;53751:2;53731:18;;;53724:30;-1:-1:-1;;;53770:18:1;;;53763:42;53822:18;;56719:42:0;53510:336:1;56719:42:0;56772:27;;;;:20;:27;;;;;:43;;;56826:108;56846:17;;;56826:108;;;56913:6;;56920:1;56913:9;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;56885:22;;;;:15;:22;;;;;;;;:25;;;;;;;;:37;;:25;:37;:::i;:::-;-1:-1:-1;56865:3:0;;-1:-1:-1;56865:3:0;;;:::i;:::-;;;;56826:108;;26771:248;26915:96;26935:5;26965:27;;;26994:4;27000:2;27004:5;26942:68;;;;;;;;;;:::i;65276:876::-;65370:21;65394:15;;;:11;:15;;;;;65428:10;65406:2;65428:6;:10::i;:::-;:39;;;;-1:-1:-1;65442:10:0;;;;;;;:25;:10;44728:1;65442:25;65428:39;65420:79;;;;-1:-1:-1;;;65420:79:0;;57478:2:1;65420:79:0;;;57460:21:1;57517:2;57497:18;;;57490:30;57556:29;57536:18;;;57529:57;57603:18;;65420:79:0;57276:351:1;65420:79:0;65522:35;65534:2;65538:18;:10;;:18;:::i;:::-;65522:11;:35::i;:::-;65586:9;;;;65570:13;45786:3;65621:26;65629:18;;;;65586:9;65621:26;:::i;:::-;65620:40;;;;:::i;:::-;65606:54;-1:-1:-1;65671:15:0;45786:3;65690:30;65698:22;;;;65690:5;:30;:::i;:::-;65689:44;;;;:::i;:::-;65671:62;-1:-1:-1;65744:19:0;45786:3;65767:36;65775:28;;;;65767:5;:36;:::i;:::-;65766:50;;;;:::i;:::-;65744:72;;65827:20;65881:11;65871:7;65865:3;65850;:12;;;:18;;;;:::i;:::-;:28;;;;:::i;:::-;:42;;;;:::i;:::-;65915:12;;;;65929:10;;65827:65;;-1:-1:-1;65905:49:0;;-1:-1:-1;;;;;65915:12:0;;;;65929:10;65827:65;65905:9;:49::i;:::-;65975:12;;;;;65989:9;;;65965:47;;-1:-1:-1;;;;;65975:12:0;;;;65989:9;66000:11;65965:9;:47::i;:::-;66033:12;;;;66023:51;;-1:-1:-1;;;;;66033:12:0;66047:21;;;;;;;;:::i;:::-;66070:3;66023:9;:51::i;:::-;66095:12;;;;66085:59;;-1:-1:-1;;;;;66095:12:0;66109:25;;;;;;;;:::i;:::-;66136:7;66085:9;:59::i;:::-;65359:793;;;;;;65276:876;;:::o;41179:1632::-;41310:7;;-1:-1:-1;;;;;42231:79:0;;42227:163;;;-1:-1:-1;42343:1:0;;-1:-1:-1;42347:30:0;42327:51;;42227:163;42404:1;:7;;42409:2;42404:7;;:18;;;;;42415:1;:7;;42420:2;42415:7;;42404:18;42400:102;;;-1:-1:-1;42455:1:0;;-1:-1:-1;42459:30:0;42439:51;;42400:102;42616:24;;;42599:14;42616:24;;;;;;;;;58409:25:1;;;58482:4;58470:17;;58450:18;;;58443:45;;;;58504:18;;;58497:34;;;58547:18;;;58540:34;;;42616:24:0;;58381:19:1;;42616:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42616:24:0;;-1:-1:-1;;42616:24:0;;;-1:-1:-1;;;;;;;42655:20:0;;42651:103;;42708:1;42712:29;42692:50;;;;;;;42651:103;42774:6;-1:-1:-1;42782:20:0;;-1:-1:-1;41179:1632:0;;;;;;;;:::o;40174:391::-;40288:7;;-1:-1:-1;;;;;40389:75:0;;40491:3;40487:12;;;40501:2;40483:21;40532:25;40543:4;40483:21;40552:1;40389:75;40532:10;:25::i;:::-;40525:32;;;;;;40174:391;;;;;;:::o;29125:716::-;29549:23;29575:69;29603:4;29575:69;;;;;;;;;;;;;;;;;29583:5;-1:-1:-1;;;;;29575:27:0;;;:69;;;;;:::i;:::-;29659:17;;29549:95;;-1:-1:-1;29659:21:0;29655:179;;29756:10;29745:30;;;;;;;;;;;;:::i;:::-;29737:85;;;;-1:-1:-1;;;29737:85:0;;58787:2:1;29737:85:0;;;58769:21:1;58826:2;58806:18;;;58799:30;58865:34;58845:18;;;58838:62;-1:-1:-1;;;58916:18:1;;;58909:40;58966:19;;29737:85:0;58585:406:1;66160:331:0;66249:9;66244:240;66264:18;;;66244:240;;;66304:10;66317:7;;66325:1;66317:10;;;;;;;:::i;:::-;;;;;;;;;;66351:15;;;;:11;:15;;;;;;;;66317:10;;-1:-1:-1;;66351:15:0;;66350:16;66342:49;;;;-1:-1:-1;;;66342:49:0;;59198:2:1;66342:49:0;;;59180:21:1;59237:2;59217:18;;;59210:30;-1:-1:-1;;;59256:18:1;;;59249:50;59316:18;;66342:49:0;58996:344:1;66342:49:0;66406:15;;;;:11;:15;;;;;;:22;;-1:-1:-1;;66406:22:0;66424:4;66406:22;;;66448:24;66418:2;;66462:5;;66448:24;;66406:15;66448:24;-1:-1:-1;66284:3:0;;;;:::i;:::-;;;;66244:240;;21491:229;21628:12;21660:52;21682:6;21690:4;21696:1;21699:12;21660:21;:52::i;:::-;21653:59;21491:229;-1:-1:-1;;;;21491:229:0:o;22611:510::-;22781:12;22839:5;22814:21;:30;;22806:81;;;;-1:-1:-1;;;22806:81:0;;59547:2:1;22806:81:0;;;59529:21:1;59586:2;59566:18;;;59559:30;59625:34;59605:18;;;59598:62;-1:-1:-1;;;59676:18:1;;;59669:36;59722:19;;22806:81:0;59345:402:1;22806:81:0;19008:20;;22898:60;;;;-1:-1:-1;;;22898:60:0;;59954:2:1;22898:60:0;;;59936:21:1;59993:2;59973:18;;;59966:30;60032:31;60012:18;;;60005:59;60081:18;;22898:60:0;59752:353:1;22898:60:0;22972:12;22986:23;23013:6;-1:-1:-1;;;;;23013:11:0;23032:5;23039:4;23013:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22971:73;;;;23062:51;23079:7;23088:10;23100:12;23062:16;:51::i;:::-;23055:58;22611:510;-1:-1:-1;;;;;;;22611:510:0:o;25297:712::-;25447:12;25476:7;25472:530;;;-1:-1:-1;25507:10:0;25500:17;;25472:530;25621:17;;:21;25617:374;;25819:10;25813:17;25880:15;25867:10;25863:2;25859:19;25852:44;25617:374;25962:12;25955:20;;-1:-1:-1;;;25955:20:0;;;;;;;;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:286::-;325:6;378:2;366:9;357:7;353:23;349:32;346:52;;;394:1;391;384:12;346:52;420:23;;-1:-1:-1;;;;;;472:32:1;;462:43;;452:71;;519:1;516;509:12;932:180;991:6;1044:2;1032:9;1023:7;1019:23;1015:32;1012:52;;;1060:1;1057;1050:12;1012:52;-1:-1:-1;1083:23:1;;932:180;-1:-1:-1;932:180:1:o;1386:131::-;-1:-1:-1;;;;;1461:31:1;;1451:42;;1441:70;;1507:1;1504;1497:12;1522:134;1590:20;;1619:31;1590:20;1619:31;:::i;:::-;1522:134;;;:::o;1661:347::-;1712:8;1722:6;1776:3;1769:4;1761:6;1757:17;1753:27;1743:55;;1794:1;1791;1784:12;1743:55;-1:-1:-1;1817:20:1;;-1:-1:-1;;;;;1849:30:1;;1846:50;;;1892:1;1889;1882:12;1846:50;1929:4;1921:6;1917:17;1905:29;;1981:3;1974:4;1965:6;1957;1953:19;1949:30;1946:39;1943:59;;;1998:1;1995;1988:12;2013:754;2110:6;2118;2126;2134;2142;2195:3;2183:9;2174:7;2170:23;2166:33;2163:53;;;2212:1;2209;2202:12;2163:53;2251:9;2238:23;2270:31;2295:5;2270:31;:::i;:::-;2320:5;-1:-1:-1;2377:2:1;2362:18;;2349:32;2390:33;2349:32;2390:33;:::i;:::-;2442:7;-1:-1:-1;2496:2:1;2481:18;;2468:32;;-1:-1:-1;2551:2:1;2536:18;;2523:32;-1:-1:-1;;;;;2567:30:1;;2564:50;;;2610:1;2607;2600:12;2564:50;2649:58;2699:7;2690:6;2679:9;2675:22;2649:58;:::i;:::-;2013:754;;;;-1:-1:-1;2013:754:1;;-1:-1:-1;2726:8:1;;2623:84;2013:754;-1:-1:-1;;;2013:754:1:o;2979:247::-;3038:6;3091:2;3079:9;3070:7;3066:23;3062:32;3059:52;;;3107:1;3104;3097:12;3059:52;3146:9;3133:23;3165:31;3190:5;3165:31;:::i;3231:111::-;-1:-1:-1;;;;;3304:31:1;3292:44;;3231:111::o;3567:127::-;3628:10;3623:3;3619:20;3616:1;3609:31;3659:4;3656:1;3649:15;3683:4;3680:1;3673:15;3699:257;3771:4;3765:11;;;3803:17;;-1:-1:-1;;;;;3835:34:1;;3871:22;;;3832:62;3829:88;;;3897:18;;:::i;:::-;3933:4;3926:24;3699:257;:::o;3961:253::-;4033:2;4027:9;4075:4;4063:17;;-1:-1:-1;;;;;4095:34:1;;4131:22;;;4092:62;4089:88;;;4157:18;;:::i;4219:275::-;4290:2;4284:9;4355:2;4336:13;;-1:-1:-1;;4332:27:1;4320:40;;-1:-1:-1;;;;;4375:34:1;;4411:22;;;4372:62;4369:88;;;4437:18;;:::i;:::-;4473:2;4466:22;4219:275;;-1:-1:-1;4219:275:1:o;4499:530::-;4541:5;4594:3;4587:4;4579:6;4575:17;4571:27;4561:55;;4612:1;4609;4602:12;4561:55;4648:6;4635:20;-1:-1:-1;;;;;4670:2:1;4667:26;4664:52;;;4696:18;;:::i;:::-;4740:55;4783:2;4764:13;;-1:-1:-1;;4760:27:1;4789:4;4756:38;4740:55;:::i;:::-;4820:2;4811:7;4804:19;4866:3;4859:4;4854:2;4846:6;4842:15;4838:26;4835:35;4832:55;;;4883:1;4880;4873:12;4832:55;4948:2;4941:4;4933:6;4929:17;4922:4;4913:7;4909:18;4896:55;4996:1;4971:16;;;4989:4;4967:27;4960:38;;;;4975:7;4499:530;-1:-1:-1;;;4499:530:1:o;5034:523::-;5120:6;5128;5136;5189:2;5177:9;5168:7;5164:23;5160:32;5157:52;;;5205:1;5202;5195:12;5157:52;5245:9;5232:23;-1:-1:-1;;;;;5270:6:1;5267:30;5264:50;;;5310:1;5307;5300:12;5264:50;5333:49;5374:7;5365:6;5354:9;5350:22;5333:49;:::i;:::-;5323:59;;;5429:2;5418:9;5414:18;5401:32;5391:42;;5483:2;5472:9;5468:18;5455:32;5496:31;5521:5;5496:31;:::i;:::-;5546:5;5536:15;;;5034:523;;;;;:::o;5562:469::-;5652:6;5660;5668;5721:2;5709:9;5700:7;5696:23;5692:32;5689:52;;;5737:1;5734;5727:12;5689:52;5776:9;5763:23;5795:31;5820:5;5795:31;:::i;:::-;5845:5;-1:-1:-1;5902:2:1;5887:18;;5874:32;5915:33;5874:32;5915:33;:::i;:::-;5562:469;;5967:7;;-1:-1:-1;;;6021:2:1;6006:18;;;;5993:32;;5562:469::o;6244:114::-;6328:4;6321:5;6317:16;6310:5;6307:27;6297:55;;6348:1;6345;6338:12;6363:130;6429:20;;6458:29;6429:20;6458:29;:::i;6498:243::-;6555:6;6608:2;6596:9;6587:7;6583:23;6579:32;6576:52;;;6624:1;6621;6614:12;6576:52;6663:9;6650:23;6682:29;6705:5;6682:29;:::i;6746:1060::-;6807:5;6860:3;6853:4;6845:6;6841:17;6837:27;6827:55;;6878:1;6875;6868:12;6827:55;6914:6;6901:20;6940:4;-1:-1:-1;;;;;6959:2:1;6956:26;6953:52;;;6985:18;;:::i;:::-;7025:36;7057:2;7052;7049:1;7045:10;7041:19;7025:36;:::i;:::-;7095:15;;;7181:1;7177:10;;;;7165:23;;7161:32;;;7126:12;;;;7205:15;;;7202:35;;;7233:1;7230;7223:12;7202:35;7269:2;7261:6;7257:15;7281:496;7297:6;7292:3;7289:15;7281:496;;;7375:4;7369:3;7364;7360:13;7356:24;7353:114;;;7421:1;7450:2;7446;7439:14;7353:114;7493:22;;:::i;:::-;7556:3;7543:17;7573:33;7598:7;7573:33;:::i;:::-;7619:22;;7690:12;;;7677:26;7661:14;;;7654:50;7717:18;;7755:12;;;;7323:4;7314:14;7281:496;;;-1:-1:-1;7795:5:1;6746:1060;-1:-1:-1;;;;;;6746:1060:1:o;7811:515::-;7929:6;7937;7990:2;7978:9;7969:7;7965:23;7961:32;7958:52;;;8006:1;8003;7996:12;7958:52;8045:9;8032:23;8064:31;8089:5;8064:31;:::i;:::-;8114:5;-1:-1:-1;8170:2:1;8155:18;;8142:32;-1:-1:-1;;;;;8186:30:1;;8183:50;;;8229:1;8226;8219:12;8183:50;8252:68;8312:7;8303:6;8292:9;8288:22;8252:68;:::i;:::-;8242:78;;;7811:515;;;;;:::o;8331:258::-;8403:1;8413:113;8427:6;8424:1;8421:13;8413:113;;;8503:11;;;8497:18;8484:11;;;8477:39;8449:2;8442:10;8413:113;;;8544:6;8541:1;8538:13;8535:48;;;-1:-1:-1;;8579:1:1;8561:16;;8554:27;8331:258::o;8594:257::-;8635:3;8673:5;8667:12;8700:6;8695:3;8688:19;8716:63;8772:6;8765:4;8760:3;8756:14;8749:4;8742:5;8738:16;8716:63;:::i;:::-;8833:2;8812:15;-1:-1:-1;;8808:29:1;8799:39;;;;8840:4;8795:50;;8594:257;-1:-1:-1;;8594:257:1:o;8856:537::-;9140:1;9136;9131:3;9127:11;9123:19;9115:6;9111:32;9100:9;9093:51;9180:6;9175:2;9164:9;9160:18;9153:34;9223:6;9218:2;9207:9;9203:18;9196:34;9278:4;9270:6;9266:17;9261:2;9250:9;9246:18;9239:45;9321:3;9315;9304:9;9300:19;9293:32;9074:4;9342:45;9382:3;9371:9;9367:19;9359:6;9342:45;:::i;9398:155::-;9457:5;9502:3;9493:6;9488:3;9484:16;9480:26;9477:46;;;9519:1;9516;9509:12;9477:46;-1:-1:-1;9541:6:1;9398:155;-1:-1:-1;9398:155:1:o;9558:1217::-;9721:6;9729;9737;9745;9753;9761;9814:3;9802:9;9793:7;9789:23;9785:33;9782:53;;;9831:1;9828;9821:12;9782:53;9871:9;9858:23;-1:-1:-1;;;;;9941:2:1;9933:6;9930:14;9927:34;;;9957:1;9954;9947:12;9927:34;9980:22;;;;10036:3;10018:16;;;10014:26;10011:46;;;10053:1;10050;10043:12;10011:46;10076:2;;-1:-1:-1;10131:2:1;10116:18;;10103:32;;10147:16;;;10144:36;;;10176:1;10173;10166:12;10144:36;10199:68;10259:7;10248:8;10237:9;10233:24;10199:68;:::i;:::-;10189:78;;10320:2;10309:9;10305:18;10292:32;10276:48;;10349:2;10339:8;10336:16;10333:36;;;10365:1;10362;10355:12;10333:36;10404:60;10456:7;10445:8;10434:9;10430:24;10404:60;:::i;:::-;10483:8;;-1:-1:-1;10378:86:1;-1:-1:-1;10571:2:1;10556:18;;10543:32;;-1:-1:-1;10587:16:1;;;10584:36;;;10616:1;10613;10606:12;10584:36;;10655:60;10707:7;10696:8;10685:9;10681:24;10655:60;:::i;:::-;9558:1217;;;;-1:-1:-1;9558:1217:1;;-1:-1:-1;9558:1217:1;;10734:8;;9558:1217;-1:-1:-1;;;9558:1217:1:o;10780:367::-;10843:8;10853:6;10907:3;10900:4;10892:6;10888:17;10884:27;10874:55;;10925:1;10922;10915:12;10874:55;-1:-1:-1;10948:20:1;;-1:-1:-1;;;;;10980:30:1;;10977:50;;;11023:1;11020;11013:12;10977:50;11060:4;11052:6;11048:17;11036:29;;11120:3;11113:4;11103:6;11100:1;11096:14;11088:6;11084:27;11080:38;11077:47;11074:67;;;11137:1;11134;11127:12;11152:1338;11312:6;11320;11328;11336;11344;11352;11360;11368;11421:3;11409:9;11400:7;11396:23;11392:33;11389:53;;;11438:1;11435;11428:12;11389:53;11477:9;11464:23;11496:31;11521:5;11496:31;:::i;:::-;11546:5;-1:-1:-1;11603:2:1;11588:18;;11575:32;11616:33;11575:32;11616:33;:::i;:::-;11668:7;-1:-1:-1;11726:2:1;11711:18;;11698:32;-1:-1:-1;;;;;11779:14:1;;;11776:34;;;11806:1;11803;11796:12;11776:34;11845:70;11907:7;11898:6;11887:9;11883:22;11845:70;:::i;:::-;11934:8;;-1:-1:-1;11819:96:1;-1:-1:-1;12022:2:1;12007:18;;11994:32;;-1:-1:-1;12038:16:1;;;12035:36;;;12067:1;12064;12057:12;12035:36;12106:72;12170:7;12159:8;12148:9;12144:24;12106:72;:::i;:::-;12197:8;;-1:-1:-1;12080:98:1;-1:-1:-1;12285:3:1;12270:19;;12257:33;;-1:-1:-1;12302:16:1;;;12299:36;;;12331:1;12328;12321:12;12299:36;;12370:60;12422:7;12411:8;12400:9;12396:24;12370:60;:::i;:::-;11152:1338;;;;-1:-1:-1;11152:1338:1;;-1:-1:-1;11152:1338:1;;;;;;12449:8;-1:-1:-1;;;11152:1338:1:o;12495:437::-;12581:6;12589;12642:2;12630:9;12621:7;12617:23;12613:32;12610:52;;;12658:1;12655;12648:12;12610:52;12698:9;12685:23;-1:-1:-1;;;;;12723:6:1;12720:30;12717:50;;;12763:1;12760;12753:12;12717:50;12802:70;12864:7;12855:6;12844:9;12840:22;12802:70;:::i;:::-;12891:8;;12776:96;;-1:-1:-1;12495:437:1;-1:-1:-1;;;;12495:437:1:o;13713:118::-;13799:5;13792:13;13785:21;13778:5;13775:32;13765:60;;13821:1;13818;13811:12;13836:309;13901:6;13909;13962:2;13950:9;13941:7;13937:23;13933:32;13930:52;;;13978:1;13975;13968:12;13930:52;14014:9;14001:23;13991:33;;14074:2;14063:9;14059:18;14046:32;14087:28;14109:5;14087:28;:::i;:::-;14134:5;14124:15;;;13836:309;;;;;:::o;14150:1262::-;14249:6;14257;14310:2;14298:9;14289:7;14285:23;14281:32;14278:52;;;14326:1;14323;14316:12;14278:52;14366:9;14353:23;-1:-1:-1;;;;;14436:2:1;14428:6;14425:14;14422:34;;;14452:1;14449;14442:12;14422:34;14475:22;;;;14531:4;14513:16;;;14509:27;14506:47;;;14549:1;14546;14539:12;14506:47;14575:22;;:::i;:::-;14633:2;14620:16;14613:5;14606:31;14682:2;14678;14674:11;14661:25;14695:33;14720:7;14695:33;:::i;:::-;14755:2;14744:14;;14737:31;14821:2;14813:11;;;14800:25;14784:14;;;14777:49;14872:2;14864:11;;14851:25;14888:16;;;14885:36;;;14917:1;14914;14907:12;14885:36;14953:63;15008:7;14997:8;14993:2;14989:17;14953:63;:::i;:::-;14948:2;14941:5;14937:14;14930:87;;15063:3;15059:2;15055:12;15042:26;15093:2;15083:8;15080:16;15077:36;;;15109:1;15106;15099:12;15077:36;15146:63;15201:7;15190:8;15186:2;15182:17;15146:63;:::i;:::-;15140:3;15129:15;;15122:88;-1:-1:-1;15133:5:1;-1:-1:-1;15287:2:1;15272:18;;15259:32;;-1:-1:-1;15303:16:1;;;15300:36;;;15332:1;15329;15322:12;15300:36;;15355:51;15398:7;15387:8;15376:9;15372:24;15355:51;:::i;15417:823::-;15523:6;15531;15539;15547;15555;15563;15616:3;15604:9;15595:7;15591:23;15587:33;15584:53;;;15633:1;15630;15623:12;15584:53;15672:9;15659:23;15691:31;15716:5;15691:31;:::i;:::-;15741:5;-1:-1:-1;15798:2:1;15783:18;;15770:32;15811:33;15770:32;15811:33;:::i;:::-;15863:7;-1:-1:-1;15917:2:1;15902:18;;15889:32;;-1:-1:-1;15968:2:1;15953:18;;15940:32;;-1:-1:-1;16023:3:1;16008:19;;15995:33;-1:-1:-1;;;;;16040:30:1;;16037:50;;;16083:1;16080;16073:12;16037:50;16122:58;16172:7;16163:6;16152:9;16148:22;16122:58;:::i;16245:382::-;16310:6;16318;16371:2;16359:9;16350:7;16346:23;16342:32;16339:52;;;16387:1;16384;16377:12;16339:52;16426:9;16413:23;16445:31;16470:5;16445:31;:::i;:::-;16495:5;-1:-1:-1;16552:2:1;16537:18;;16524:32;16565:30;16524:32;16565:30;:::i;16632:315::-;16700:6;16708;16761:2;16749:9;16740:7;16736:23;16732:32;16729:52;;;16777:1;16774;16767:12;16729:52;16813:9;16800:23;16790:33;;16873:2;16862:9;16858:18;16845:32;16886:31;16911:5;16886:31;:::i;16952:356::-;17154:2;17136:21;;;17173:18;;;17166:30;17232:34;17227:2;17212:18;;17205:62;17299:2;17284:18;;16952:356::o;17313:355::-;17515:2;17497:21;;;17554:2;17534:18;;;17527:30;17593:33;17588:2;17573:18;;17566:61;17659:2;17644:18;;17313:355::o;17673:::-;17875:2;17857:21;;;17914:2;17894:18;;;17887:30;17953:33;17948:2;17933:18;;17926:61;18019:2;18004:18;;17673:355::o;18033:340::-;18235:2;18217:21;;;18274:2;18254:18;;;18247:30;-1:-1:-1;;;18308:2:1;18293:18;;18286:46;18364:2;18349:18;;18033:340::o;18378:127::-;18439:10;18434:3;18430:20;18427:1;18420:31;18470:4;18467:1;18460:15;18494:4;18491:1;18484:15;18510:375;-1:-1:-1;;;;;18768:15:1;;;18750:34;;18820:15;;;;18815:2;18800:18;;18793:43;18867:2;18852:18;;18845:34;;;;18700:2;18685:18;;18510:375::o;18890:127::-;18951:10;18946:3;18942:20;18939:1;18932:31;18982:4;18979:1;18972:15;19006:4;19003:1;18996:15;19022:135;19061:3;-1:-1:-1;;19082:17:1;;19079:43;;;19102:18;;:::i;:::-;-1:-1:-1;19149:1:1;19138:13;;19022:135::o;19162:380::-;19241:1;19237:12;;;;19284;;;19305:61;;19359:4;19351:6;19347:17;19337:27;;19305:61;19412:2;19404:6;19401:14;19381:18;19378:38;19375:161;;;19458:10;19453:3;19449:20;19446:1;19439:31;19493:4;19490:1;19483:15;19521:4;19518:1;19511:15;20254:296;20324:5;20383:3;20370:17;20469:3;20465:8;20454;20438:14;20434:29;20430:44;20410:18;20406:69;20396:97;;20489:1;20486;20479:12;20396:97;20511:33;;;;20254:296;-1:-1:-1;;20254:296:1:o;20555:523::-;20625:5;20632:6;20692:3;20679:17;20778:2;20774:7;20763:8;20747:14;20743:29;20739:43;20719:18;20715:68;20705:96;;20797:1;20794;20787:12;20705:96;20825:33;;20929:4;20916:18;;;-1:-1:-1;20877:21:1;;-1:-1:-1;;;;;;20946:30:1;;20943:50;;;20989:1;20986;20979:12;20943:50;21046:6;21043:1;21039:14;21023;21019:35;21009:8;21005:50;21002:70;;;21068:1;21065;21058:12;21083:983;21145:3;21197:56;21247:5;21240;21197:56;:::i;:::-;21274:4;21262:17;;;21295:14;;21288:36;;;-1:-1:-1;;;;;21336:37:1;;21333:57;;;21386:1;21383;21376:12;21333:57;21417:1;21413:20;;21470:12;21464:3;21455:13;;21442:49;21532:3;21523:6;21518:3;21514:16;21510:26;21500:36;;;21556:1;21552:2;21545:13;21614:4;21607:5;21603:16;21590:30;21583:4;21578:3;21574:14;21567:54;21677:4;21670:5;21666:16;21653:30;21646:4;21641:3;21637:14;21630:54;21740:4;21733:5;21729:16;21716:30;21709:4;21704:3;21700:14;21693:54;21795:4;21788:5;21784:16;21771:30;21810:33;21835:7;21810:33;:::i;:::-;-1:-1:-1;;;;;21875:33:1;21868:4;21859:14;;21852:57;21940:36;21896:3;21959:16;;21940:36;:::i;:::-;21985:57;22036:4;22031:3;22027:14;22011;21985:57;:::i;22071:266::-;22159:6;22154:3;22147:19;22211:6;22204:5;22197:4;22192:3;22188:14;22175:43;-1:-1:-1;22263:1:1;22238:16;;;22256:4;22234:27;;;22227:38;;;;22319:2;22298:15;;;-1:-1:-1;;22294:29:1;22285:39;;;22281:50;;22071:266::o;22342:1885::-;22460:6;22455:3;22448:19;22430:3;22486:4;22527:2;22522:3;22518:12;22552:11;22579;22572:18;;22629:6;22626:1;22622:14;22615:5;22611:26;22599:38;;22660:5;22683:1;22693:1508;22707:6;22704:1;22701:13;22693:1508;;;22778:5;22772:4;22768:16;22763:3;22756:29;22837:6;22824:20;22927:3;22923:8;22915:5;22899:14;22895:26;22891:41;22871:18;22867:66;22857:94;;22947:1;22944;22937:12;22857:94;22979:30;;23032:4;23064:21;;23098:33;23064:21;23098:33;:::i;:::-;-1:-1:-1;;;;;23157:33:1;23144:47;;23239:16;;;23226:30;23211:13;;;23204:53;23280:4;23332:16;;;23319:30;23304:13;;;23297:53;23373:4;23418:16;;;23405:30;23448:31;23405:30;23448:31;:::i;:::-;23527:4;23514:18;23499:13;;;23492:41;23556:4;23614:16;;;23601:30;23688:14;23684:28;;;-1:-1:-1;;23680:42:1;23654:69;;23644:97;;23737:1;23734;23727:12;23644:97;23769:34;;23832:21;;-1:-1:-1;;;;;23869:32:1;;23866:52;;;23914:1;23911;23904:12;23866:52;23967:8;23951:14;23947:29;23938:7;23934:43;23931:63;;;23990:1;23987;23980:12;23931:63;24029:2;24024;24018:4;24014:13;24007:25;24053:68;24117:2;24111:4;24107:13;24097:8;24092:2;24083:7;24079:16;24053:68;:::i;:::-;24179:12;;;;24045:76;-1:-1:-1;;;24144:15:1;;;;-1:-1:-1;;;22729:1:1;22722:9;22693:1508;;;-1:-1:-1;24217:4:1;;22342:1885;-1:-1:-1;;;;;;;22342:1885:1:o;24232:1871::-;24411:2;24400:9;24393:21;24463:6;24450:20;24445:2;24434:9;24430:18;24423:48;24374:4;24500:35;24531:2;24523:6;24519:15;24500:35;:::i;:::-;24544:59;24599:2;24588:9;24584:18;24570:12;24544:59;:::i;:::-;;24664:2;24656:6;24652:15;24639:29;24634:2;24623:9;24619:18;24612:57;24731:2;24723:6;24719:15;24706:29;24700:3;24689:9;24685:19;24678:58;24798:3;24790:6;24786:16;24773:30;24767:3;24756:9;24752:19;24745:59;24835:34;24864:3;24856:6;24852:16;24835:34;:::i;:::-;1184:4;1173:16;;24926:3;24911:19;;1161:29;24878:53;24962:36;24993:3;24985:6;24981:16;24962:36;:::i;:::-;25007:62;25064:3;25053:9;25049:19;25033:14;25007:62;:::i;:::-;;25100:36;25131:3;25123:6;25119:16;25100:36;:::i;:::-;25155:3;25167:61;25224:2;25213:9;25209:18;25193:14;25167:61;:::i;:::-;25247:3;25237:13;;25311:2;25303:6;25299:15;25286:29;25281:2;25270:9;25266:18;25259:57;;25335:3;25399:2;25391:6;25387:15;25374:29;25369:2;25358:9;25354:18;25347:57;25435:67;25498:2;25490:6;25486:15;25478:6;25435:67;:::i;:::-;25413:89;;;25521:6;25546:3;25585:2;25580;25569:9;25565:18;25558:30;25611:74;25680:3;25669:9;25665:19;25649:14;25611:74;:::i;:::-;25597:88;;25730:67;25793:2;25785:6;25781:15;25773:6;25730:67;:::i;:::-;25694:103;;25816:3;25887:2;25883:7;25871:9;25863:6;25859:22;25855:36;25850:2;25839:9;25835:18;25828:64;25915:93;26001:6;25987:12;25971:14;25915:93;:::i;:::-;26057:15;;26044:29;26024:18;;;;26017:57;;;;-1:-1:-1;25901:107:1;;24232:1871;-1:-1:-1;;;24232:1871:1:o;26458:1168::-;26643:2;26632:9;26625:21;26606:4;26681:6;26668:20;26697:31;26722:5;26697:31;:::i;:::-;26764:1;26760;26755:3;26751:11;26747:19;26813:2;26806:5;26802:14;26797:2;26786:9;26782:18;26775:42;26860:67;26923:2;26915:6;26911:15;26903:6;26860:67;:::i;:::-;26826:101;;26963:4;26958:2;26947:9;26943:18;26936:32;26991:104;27090:3;27079:9;27075:19;27061:12;27047;26991:104;:::i;:::-;26977:118;;;27144:2;27136:6;27132:15;27119:29;27157:33;27182:7;27157:33;:::i;:::-;27239:2;27230:7;27226:16;27221:2;27210:9;27206:18;27199:44;;;27305:2;27297:6;27293:15;27280:29;27274:3;27263:9;27259:19;27252:58;27372:3;27364:6;27360:16;27347:30;27341:3;27330:9;27326:19;27319:59;27440:3;27432:6;27428:16;27415:30;27409:3;27398:9;27394:19;27387:59;27495:3;27487:6;27483:16;27470:30;27509:31;27532:7;27509:31;:::i;:::-;27591:4;27578:18;27571:4;27556:20;;;;27549:48;;;;-1:-1:-1;27614:6:1;26458:1168;-1:-1:-1;26458:1168:1:o;28703:574::-;28825:4;28831:6;28891:11;28878:25;28985:2;28981:7;28970:8;28954:14;28950:29;28946:43;28926:18;28922:68;28912:96;;29004:1;29001;28994:12;28912:96;29031:33;;29083:20;;;-1:-1:-1;;;;;;29115:30:1;;29112:50;;;29158:1;29155;29148:12;29112:50;29191:4;29179:17;;-1:-1:-1;29242:1:1;29238:14;;;29222;29218:35;29208:46;;29205:66;;;29267:1;29264;29257:12;29547:328;29643:4;29701:11;29688:25;29795:3;29791:8;29780;29764:14;29760:29;29756:44;29736:18;29732:69;29722:97;;29815:1;29812;29805:12;29722:97;29836:33;;;;;29547:328;-1:-1:-1;;29547:328:1:o;31670:331::-;31872:2;31854:21;;;31911:1;31891:18;;;31884:29;-1:-1:-1;;;31944:2:1;31929:18;;31922:38;31992:2;31977:18;;31670:331::o;32149:844::-;32224:88;32308:3;32250:56;32299:5;32293:12;-1:-1:-1;;;;;32102:36:1;;32006:138;32250:56;32224:88;:::i;:::-;32401:4;32390:16;;32384:23;-1:-1:-1;;;;;32102:36:1;32417:55;32466:4;32461:3;32457:14;32443:12;32417:55;:::i;:::-;-1:-1:-1;32563:4:1;32552:16;;32546:23;-1:-1:-1;;;;;32102:36:1;32579:57;32630:4;32625:3;32621:14;32605;32579:57;:::i;:::-;-1:-1:-1;32685:4:1;32674:16;;32668:23;32661:4;32652:14;;32645:47;32741:4;32730:16;;32724:23;32717:4;32708:14;;32701:47;32797:4;32786:16;;32780:23;32773:4;32764:14;;32757:47;32847:4;32836:16;32830:23;32894:4;32879:20;;;32910:4;32901:14;;1161:29;32950:1;32946:17;;;;32942:28;32981:4;32972:14;;;1161:29;54686:142:0:o;32998:266:1:-;33187:3;33172:19;;33200:58;33176:9;33240:6;33200:58;:::i;33614:555::-;33674:3;33712:5;33706:12;33739:6;33734:3;33727:19;33765:4;33794:2;33789:3;33785:12;33778:19;;33831:2;33824:5;33820:14;33852:1;33862:282;33876:6;33873:1;33870:13;33862:282;;;33935:13;;33977:9;;-1:-1:-1;;;;;33973:35:1;33961:48;;34049:11;;34043:18;34029:12;;;34022:40;34091:4;34082:14;;;;34119:15;;;;34005:1;33891:9;33862:282;;;-1:-1:-1;34160:3:1;;33614:555;-1:-1:-1;;;;;33614:555:1:o;34174:583::-;34257:5;34251:12;34246:3;34239:25;34342:1;34338;34333:3;34329:11;34325:19;34317:4;34310:5;34306:16;34300:23;34296:49;34289:4;34284:3;34280:14;34273:73;34395:4;34388:5;34384:16;34378:23;34371:4;34366:3;34362:14;34355:47;34221:3;34448:4;34441:5;34437:16;34431:23;34486:4;34479;34474:3;34470:14;34463:28;34512:65;34571:4;34566:3;34562:14;34548:12;34512:65;:::i;:::-;34500:77;;34625:4;34618:5;34614:16;34608:23;34673:3;34667:4;34663:14;34656:4;34651:3;34647:14;34640:38;34694:57;34746:4;34730:14;34694:57;:::i;:::-;34687:64;34174:583;-1:-1:-1;;;;;34174:583:1:o;34762:249::-;34935:2;34924:9;34917:21;34898:4;34955:50;35001:2;34990:9;34986:18;34978:6;34955:50;:::i;35360:506::-;35607:2;35596:9;35589:21;35570:4;35633:50;35679:2;35668:9;35664:18;35656:6;35633:50;:::i;:::-;35731:9;35723:6;35719:22;35714:2;35703:9;35699:18;35692:50;35759:32;35784:6;35776;35759:32;:::i;:::-;35751:40;;;35856:1;35852;35847:3;35843:11;35839:19;35831:6;35827:32;35822:2;35811:9;35807:18;35800:60;35360:506;;;;;;:::o;36908:251::-;36978:6;37031:2;37019:9;37010:7;37006:23;37002:32;36999:52;;;37047:1;37044;37037:12;36999:52;37079:9;37073:16;37098:31;37123:5;37098:31;:::i;37473:245::-;37540:6;37593:2;37581:9;37572:7;37568:23;37564:32;37561:52;;;37609:1;37606;37599:12;37561:52;37641:9;37635:16;37660:28;37682:5;37660:28;:::i;37723:274::-;-1:-1:-1;;;;;37915:32:1;;;;37897:51;;37979:2;37964:18;;37957:34;37885:2;37870:18;;37723:274::o;38002:184::-;38072:6;38125:2;38113:9;38104:7;38100:23;38096:32;38093:52;;;38141:1;38138;38131:12;38093:52;-1:-1:-1;38164:16:1;;38002:184;-1:-1:-1;38002:184:1:o;41005:342::-;41207:2;41189:21;;;41246:2;41226:18;;;41219:30;-1:-1:-1;;;41280:2:1;41265:18;;41258:48;41338:2;41323:18;;41005:342::o;44471:336::-;44673:2;44655:21;;;44712:2;44692:18;;;44685:30;-1:-1:-1;;;44746:2:1;44731:18;;44724:42;44798:2;44783:18;;44471:336::o;46224:340::-;46426:2;46408:21;;;46465:2;46445:18;;;46438:30;-1:-1:-1;;;46499:2:1;46484:18;;46477:46;46555:2;46540:18;;46224:340::o;46569:337::-;46771:2;46753:21;;;46810:2;46790:18;;;46783:30;-1:-1:-1;;;46844:2:1;46829:18;;46822:43;46897:2;46882:18;;46569:337::o;46911:168::-;46951:7;47017:1;47013;47009:6;47005:14;47002:1;46999:21;46994:1;46987:9;46980:17;46976:45;46973:71;;;47024:18;;:::i;:::-;-1:-1:-1;47064:9:1;;46911:168::o;47084:217::-;47124:1;47150;47140:132;;47194:10;47189:3;47185:20;47182:1;47175:31;47229:4;47226:1;47219:15;47257:4;47254:1;47247:15;47140:132;-1:-1:-1;47286:9:1;;47084:217::o;47306:128::-;47346:3;47377:1;47373:6;47370:1;47367:13;47364:39;;;47383:18;;:::i;:::-;-1:-1:-1;47419:9:1;;47306:128::o;47785:125::-;47825:4;47853:1;47850;47847:8;47844:34;;;47858:18;;:::i;:::-;-1:-1:-1;47895:9:1;;47785:125::o;50200:1022::-;50401:1;50397;50392:3;50388:11;50384:19;50376:6;50372:32;50361:9;50354:51;50335:4;50424:2;50462;50457;50446:9;50442:18;50435:30;50485:1;50518:6;50512:13;50548:36;50574:9;50548:36;:::i;:::-;50620:6;50615:2;50604:9;50600:18;50593:34;50646:2;50667:1;50699:2;50688:9;50684:18;50716:1;50711:122;;;;50847:1;50842:354;;;;50677:519;;50711:122;-1:-1:-1;;50759:24:1;;50739:18;;;50732:52;50819:3;50804:19;;;-1:-1:-1;50711:122:1;;50842:354;50873:6;50870:1;50863:17;50921:2;50918:1;50908:16;50946:1;50960:180;50974:6;50971:1;50968:13;50960:180;;;51067:14;;51043:17;;;51039:26;;51032:50;51110:16;;;;50989:10;;50960:180;;;51164:17;;51160:26;;;-1:-1:-1;;50677:519:1;-1:-1:-1;51213:3:1;;50200:1022;-1:-1:-1;;;;;;;;;50200:1022:1:o;51859:127::-;51920:10;51915:3;51911:20;51908:1;51901:31;51951:4;51948:1;51941:15;51975:4;51972:1;51965:15;53851:327;53946:4;54004:11;53991:25;54098:3;54094:8;54083;54067:14;54063:29;54059:44;54039:18;54035:69;54025:97;;54118:1;54115;54108:12;54183:544;54284:2;54279:3;54276:11;54273:448;;;54320:1;54345:5;54341:2;54334:17;54390:4;54386:2;54376:19;54460:2;54448:10;54444:19;54441:1;54437:27;54431:4;54427:38;54496:4;54484:10;54481:20;54478:47;;;-1:-1:-1;54519:4:1;54478:47;54574:2;54569:3;54565:12;54562:1;54558:20;54552:4;54548:31;54538:41;;54629:82;54647:2;54640:5;54637:13;54629:82;;;54692:17;;;54673:1;54662:13;54629:82;;54903:1186;-1:-1:-1;;;;;55004:3:1;55001:27;54998:53;;;55031:18;;:::i;:::-;55060:93;55149:3;55109:38;55141:4;55135:11;55109:38;:::i;:::-;55103:4;55060:93;:::i;:::-;55179:1;55204:2;55199:3;55196:11;55221:1;55216:615;;;;55875:1;55892:3;55889:93;;;-1:-1:-1;55948:19:1;;;55935:33;55889:93;-1:-1:-1;;54860:1:1;54856:11;;;54852:24;54848:29;54838:40;54884:1;54880:11;;;54835:57;55995:78;;55189:894;;55216:615;50147:1;50140:14;;;50184:4;50171:18;;-1:-1:-1;;55252:17:1;;;55352:9;55374:229;55388:7;55385:1;55382:14;55374:229;;;55477:19;;;55464:33;55449:49;;55584:4;55569:20;;;;55537:1;55525:14;;;;55404:12;55374:229;;;55378:3;55631;55622:7;55619:16;55616:159;;;55755:1;55751:6;55745:3;55739;55736:1;55732:11;55728:21;55724:34;55720:39;55707:9;55702:3;55698:19;55685:33;55681:79;55673:6;55666:95;55616:159;;;55818:1;55812:3;55809:1;55805:11;55801:19;55795:4;55788:33;55189:894;;;54903:1186;;;:::o;56094:1177::-;56263:5;56250:19;56278:33;56303:7;56278:33;:::i;:::-;56340:11;;-1:-1:-1;;;;;;56336:42:1;-1:-1:-1;;;;;56380:33:1;;;;56333:81;56320:95;;56469:2;56458:14;;56445:28;56410:1;56431:12;;56424:50;56528:2;56517:14;;56504:28;56500:1;56490:12;;56483:50;56570:1;56560:12;;56620:2;56609:14;;56596:28;56633:31;56596:28;56633:31;:::i;:::-;56699:17;;-1:-1:-1;;56695:32:1;56742:4;56729:18;;;;56692:56;56673:76;;56808:3;56797:15;;56784:29;56864:14;56860:26;;;-1:-1:-1;;56856:40:1;56832:65;;56822:93;;56911:1;56908;56901:12;56822:93;56936:30;;56989:18;;-1:-1:-1;;;;;57019:30:1;;57016:50;;;57062:1;57059;57052:12;57016:50;57099:2;57093:4;57089:13;57075:27;;57146:6;57130:14;57126:27;57118:6;57114:40;57111:60;;;57167:1;57164;57157:12;57111:60;57180:85;57258:6;57250;57246:1;57240:4;57236:12;57180:85;:::i;60110:274::-;60239:3;60277:6;60271:13;60293:53;60339:6;60334:3;60327:4;60319:6;60315:17;60293:53;:::i;60389:219::-;60538:2;60527:9;60520:21;60501:4;60558:44;60598:2;60587:9;60583:18;60575:6;60558:44;:::i
Swarm Source
ipfs://37185519f33392822e922bceb3f8493229c013e44ed5920a53ad4fe49b38d445
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARB | 88.16% | $2,327.19 | 48.3634 | $112,550.92 | |
ARB | 0.01% | $2,327.98 | 0.00557116 | $12.97 | |
ARB | <0.01% | $1 | 8.2 | $8.21 | |
POL | 9.04% | $0.378726 | 30,484.585 | $11,545.32 | |
POL | 1.01% | $2,324.8 | 0.5562 | $1,293.09 | |
POL | 0.01% | $0.378404 | 44.1411 | $16.7 | |
POL | <0.01% | $0.999985 | 10.0187 | $10.02 | |
CRONOS | 1.05% | $0.079639 | 16,870.5136 | $1,343.55 | |
CRONOS | Cronos (CRO) | <0.01% | $0.079753 | 10.695 | $0.85296 |
CRONOS | <0.01% | $0.093769 | 4.4165 | $0.4141 | |
OP | 0.61% | $2,323.82 | 0.3344 | $777.15 | |
ZKSYNC | 0.03% | $2,328.67 | 0.0166 | $38.66 | |
ETH | 0.01% | $2,328.67 | 0.00628 | $14.62 | |
BASE | <0.01% | $2,359.98 | 0.0014 | $3.3 |
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.