Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
WagmiLiquid
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.28; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {TickMath} from "@uniswap/v3-core/contracts/libraries/TickMath.sol"; import {INonfungiblePositionManager, IUniswapV3Factory, ILockerFactory, ExactInputSingleParams, ISwapRouter, ILocker} from "./interface.sol"; import {Bytes32AddressLib} from "./Bytes32AddressLib.sol"; contract StandardToken is ERC20 { constructor( string memory name_, string memory symbol_, uint256 maxSupply_ ) ERC20(name_, symbol_) { _mint(msg.sender, maxSupply_); } function decimals() public view virtual override returns (uint8) { return 18; } } contract WagmiLiquid { using TickMath for int24; using Bytes32AddressLib for bytes32; mapping(address => uint256) public nonce; address public weth = 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38; IUniswapV3Factory public uniswapV3Factory = IUniswapV3Factory(0x56CFC796bC88C9c7e1b38C2b0aF9B7120B079aef); INonfungiblePositionManager public positionManager = INonfungiblePositionManager(0x77DcC9b09C6Ae94CDC726540735682A38e18d690); function deployToken( int24 _initialTick, uint24 _fee, StandardToken _token ) external payable returns (uint256 tokenId) { int24 tickSpacing = uniswapV3Factory.feeAmountTickSpacing(_fee); require( tickSpacing != 0 && _initialTick % tickSpacing == 0, "Invalid tick" ); uint160 sqrtPriceX96 = _initialTick.getSqrtRatioAtTick(); address pool; if(address(_token) < weth) { pool = uniswapV3Factory.createPool(address(_token), weth, _fee); } else { pool = uniswapV3Factory.createPool(weth, address(_token), _fee); } // = uniswapV3Factory.createPool(address(_token), weth, _fee); IUniswapV3Factory(pool).initialize(sqrtPriceX96); _token.transferFrom(msg.sender, address(this), _token.balanceOf(msg.sender)); INonfungiblePositionManager.MintParams memory params; if(address(_token) < weth) { params = INonfungiblePositionManager.MintParams( address(_token), weth, _fee, _initialTick, maxUsableTick(tickSpacing), _token.balanceOf(address(this)), 0, 0, 0, address(this), block.timestamp ); } else { params = INonfungiblePositionManager.MintParams( weth, address(_token), _fee, -maxUsableTick(tickSpacing), -_initialTick, _token.balanceOf(address(this)), 0, 0, 0, address(this), block.timestamp ); } _token.approve(address(positionManager), _token.balanceOf(address(this))); (tokenId, , , ) = positionManager.mint(params); positionManager.safeTransferFrom(address(this), msg.sender, tokenId); } function predictToken( address deployer, string calldata name, string calldata symbol, uint256 supply, bytes32 salt ) public view returns (address) { bytes32 create2Salt = keccak256(abi.encode(deployer, salt)); return keccak256( abi.encodePacked( bytes1(0xFF), address(this), create2Salt, keccak256( abi.encodePacked( type(StandardToken).creationCode, abi.encode(name, symbol, supply) ) ) ) ).fromLast20Bytes(); } function generateSalt( address deployer, string calldata name, string calldata symbol, uint256 supply ) public view returns (bytes32 salt, address token) { uint256 deployerNonce = nonce[deployer]; for (uint256 i; ; i++) { salt = keccak256(abi.encode(deployerNonce, i)); token = predictToken(deployer, name, symbol, supply, salt); if (token < weth && token.code.length == 0) { break; } } } } /// @notice Given a tickSpacing, compute the maximum usable tick function maxUsableTick(int24 tickSpacing) pure returns (int24) { unchecked { return (TickMath.MAX_TICK / tickSpacing) * tickSpacing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Math library for computing sqrt prices from ticks and vice versa /// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports /// prices between 2**-128 and 2**128 library TickMath { /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128 int24 internal constant MIN_TICK = -887272; /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128 int24 internal constant MAX_TICK = -MIN_TICK; /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK) uint160 internal constant MIN_SQRT_RATIO = 4295128739; /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK) uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; /// @notice Calculates sqrt(1.0001^tick) * 2^96 /// @dev Throws if |tick| > max tick /// @param tick The input tick for the above formula /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0) /// at the given tick function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) { uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick)); require(absTick <= uint256(int(MAX_TICK)), 'T'); uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000; if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128; if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128; if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128; if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128; if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128; if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128; if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128; if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128; if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128; if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128; if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128; if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128; if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128; if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128; if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128; if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128; if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128; if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128; if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128; if (tick > 0) ratio = type(uint256).max / ratio; // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96. // we then downcast because we know the result always fits within 160 bits due to our tick input constraint // we round up in the division so getTickAtSqrtRatio of the output price is always consistent sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1)); } /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may /// ever return. /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96 /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) { // second inequality must be < because the price can never reach the price at the max tick require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, 'R'); uint256 ratio = uint256(sqrtPriceX96) << 32; uint256 r = ratio; uint256 msb = 0; assembly { let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(5, gt(r, 0xFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(4, gt(r, 0xFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(3, gt(r, 0xFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(2, gt(r, 0xF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(1, gt(r, 0x3)) msb := or(msb, f) r := shr(f, r) } assembly { let f := gt(r, 0x1) msb := or(msb, f) } if (msb >= 128) r = ratio >> (msb - 127); else r = ratio << (127 - msb); int256 log_2 = (int256(msb) - 128) << 64; assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(63, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(62, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(61, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(60, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(59, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(58, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(57, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(56, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(55, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(54, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(53, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(52, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(51, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(50, f)) } int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128); int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128); tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Library for converting between addresses and bytes32 values. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Bytes32AddressLib.sol) library Bytes32AddressLib { function fromLast20Bytes( bytes32 bytesValue ) internal pure returns (address) { return address(uint160(uint256(bytesValue))); } function fillLast12Bytes( address addressValue ) internal pure returns (bytes32) { return bytes32(bytes20(addressValue)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.25; interface ILocker { function initializer(uint256 tokenId) external; } interface ILockerFactory { function deploy( address token, address beneficiary, uint64 durationSeconds, uint256 tokenId, uint256 fees ) external payable returns (address); } interface INonfungiblePositionManager { struct MintParams { address token0; address token1; uint24 fee; int24 tickLower; int24 tickUpper; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; address recipient; uint256 deadline; } struct CollectParams { uint256 tokenId; address recipient; uint128 amount0Max; uint128 amount1Max; } function mint( MintParams calldata params ) external payable returns ( uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1 ); function createAndInitializePoolIfNecessary( address token0, address token1, uint24 fee, uint160 sqrtPriceX96 ) external payable returns (address pool); function collect( CollectParams calldata params ) external payable returns (uint256 amount0, uint256 amount1); function safeTransferFrom( address from, address to, uint256 tokenId ) external; } interface IUniswapV3Factory { function initialize(uint160 sqrtPriceX96) external; function createPool( address tokenA, address tokenB, uint24 fee ) external returns (address pool); function feeAmountTickSpacing(uint24 fee) external view returns (int24); } // interface ILockerFactory { // function deploy( // address token, // address beneficiary, // uint64 durationSeconds, // uint256 tokenId, // uint256 fees // ) external payable returns (address); // } // interface ILocker { // function initializer(uint256 tokenId) external; // } struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } interface ISwapRouter { function exactInputSingle( ExactInputSingleParams calldata params ) external payable returns (uint256 amountOut); }
{ "viaIR": true, "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"int24","name":"_initialTick","type":"int24"},{"internalType":"uint24","name":"_fee","type":"uint24"},{"internalType":"contract StandardToken","name":"_token","type":"address"}],"name":"deployToken","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"deployer","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"generateSalt","outputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"address","name":"token","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"positionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"deployer","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"predictToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV3Factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052346100275761001161014b565b61001961002c565b6142cf6101bb82396142cf90f35b610032565b60405190565b600080fd5b60001b90565b9061004e60018060a01b0391610037565b9181191691161790565b60018060a01b031690565b90565b61007a61007561007f92610058565b610063565b610058565b90565b61008b90610066565b90565b61009790610082565b90565b90565b906100b26100ad6100b99261008e565b61009a565b825461003d565b9055565b6100c690610066565b90565b6100d2906100bd565b90565b6100de906100bd565b90565b90565b906100f96100f4610100926100d5565b6100e1565b825461003d565b9055565b61010d90610066565b90565b61011990610104565b90565b61012590610104565b90565b90565b9061014061013b6101479261011c565b610128565b825461003d565b9055565b61016a73039e2fb66102314ce7b64ce5ce3e5183bc94ad38600161009d565b61019161018a7356cfc796bc88c9c7e1b38c2b0af9b7120b079aef6100c9565b60026100e4565b6101b86101b17377dcc9b09c6ae94cdc726540735682a38e18d690610110565b600361012b565b56fe60806040526004361015610013575b61071f565b61001e60003561008d565b80632b66df51146100885780633fc8cef3146100835780635b5491821461007e578063680c63541461007957806370ae92d214610074578063791b98bc1461006f57638f54b02d0361000e576106f3565b6105fd565b610558565b610472565b61038f565b6102bf565b61022e565b60e01c90565b60405190565b600080fd5b600080fd5b600080fd5b60018060a01b031690565b6100bc906100a8565b90565b6100c8816100b3565b036100cf57565b600080fd5b905035906100e1826100bf565b565b600080fd5b600080fd5b600080fd5b909182601f8301121561012c5781359167ffffffffffffffff831161012757602001926001830284011161012257565b6100ed565b6100e8565b6100e3565b90565b61013d81610131565b0361014457565b600080fd5b9050359061015682610134565b565b90565b61016481610158565b0361016b57565b600080fd5b9050359061017d8261015b565b565b909160a0828403126102065761019883600084016100d4565b92602083013567ffffffffffffffff811161020157816101b99185016100f2565b92909360408101359167ffffffffffffffff83116101fc576101e0846101f99484016100f2565b9390946101f08160608601610149565b93608001610170565b90565b6100a3565b6100a3565b61009e565b610214906100b3565b9052565b919061022c9060006020850194019061020b565b565b346102655761026161025061024436600461017f565b95949094939193610969565b610258610093565b91829182610218565b0390f35b610099565b600091031261027557565b61009e565b1c90565b60018060a01b031690565b61029990600861029e930261027a565b61027e565b90565b906102ac9154610289565b90565b6102bc60016000906102a1565b90565b346102ef576102cf36600461026a565b6102eb6102da6102af565b6102e2610093565b91829182610218565b0390f35b610099565b60018060a01b031690565b61030f906008610314930261027a565b6102f4565b90565b9061032291546102ff565b90565b6103326002600090610317565b90565b90565b61034c610347610351926100a8565b610335565b6100a8565b90565b61035d90610338565b90565b61036990610354565b90565b61037590610360565b9052565b919061038d9060006020850194019061036c565b565b346103bf5761039f36600461026a565b6103bb6103aa610325565b6103b2610093565b91829182610379565b0390f35b610099565b919060808382031261043c576103dd81600085016100d4565b92602081013567ffffffffffffffff811161043757826103fe9183016100f2565b929093604083013567ffffffffffffffff8111610432576104248361042f9286016100f2565b939094606001610149565b90565b6100a3565b6100a3565b61009e565b61044a90610158565b9052565b91602061047092949361046960408201966000830190610441565b019061020b565b565b346104aa576104916104853660046103c4565b94939093929192610b62565b906104a661049d610093565b9283928361044e565b0390f35b610099565b906020828203126104c9576104c6916000016100d4565b90565b61009e565b6104d790610354565b90565b906104e4906104ce565b600052602052604060002090565b90565b61050590600861050a930261027a565b6104f2565b90565b9061051891546104f5565b90565b6105329061052d6000916000926104da565b61050d565b90565b61053e90610131565b9052565b919061055690600060208501940190610535565b565b346105885761058461057361056e3660046104af565b61051b565b61057b610093565b91829182610542565b0390f35b610099565b60018060a01b031690565b6105a89060086105ad930261027a565b61058d565b90565b906105bb9154610598565b90565b6105cb60036000906105b0565b90565b6105d790610354565b90565b6105e3906105ce565b9052565b91906105fb906000602085019401906105da565b565b3461062d5761060d36600461026a565b6106296106186105be565b610620610093565b918291826105e7565b0390f35b610099565b60020b90565b61064181610632565b0361064857565b600080fd5b9050359061065a82610638565b565b62ffffff1690565b61066d8161065c565b0361067457565b600080fd5b9050359061068682610664565b565b610691906100b3565b90565b61069d81610688565b036106a457565b600080fd5b905035906106b682610694565b565b90916060828403126106ee576106eb6106d4846000850161064d565b936106e28160208601610679565b936040016106a9565b90565b61009e565b61071b61070a6107043660046106b8565b9161121e565b610712610093565b91829182610542565b0390f35b600080fd5b600090565b91602061074b9294936107446040820196600083019061020b565b0190610441565b565b601f801991011690565b634e487b7160e01b600052604160045260246000fd5b906107779061074d565b810190811067ffffffffffffffff82111761079157604052565b610757565b60200190565b5190565b90565b60ff60f81b1690565b60f81b90565b6107c66107c16107cb926107a0565b6107ac565b6107a3565b90565b6107d790610354565b90565b906107ed6107e6610093565b928361076d565b565b60209181520190565b90826000939282370152565b919061081e8161081781610823956107ef565b80956107f8565b61074d565b0190565b9594926108609461084a6108589360409560608b01918b830360008d0152610804565b9188830360208a0152610804565b940190610535565b565b905090565b60005b83811061087b575050906000910152565b80602091830151818501520161086a565b6108b16108a89260209261089f8161079c565b94858093610862565b93849101610867565b0190565b6108c3906108c9939261088c565b9061088c565b90565b90565b6108db6108e0916107a3565b6108cc565b9052565b60601b90565b6108f3906108e4565b90565b6108ff906108ea565b90565b61090e610913916100b3565b6108f6565b9052565b90565b61092661092b91610158565b610917565b9052565b9261095d60146109659461095560018861094d60209b9a8c996108cf565b018092610902565b01809261091a565b01809261091a565b0190565b92610a48610a70939692610a22610a97996109b1610a7f999861098a610724565b506109a2610996610093565b93849260208401610729565b6020820181038252038261076d565b6109c36109bd8261079c565b91610796565b2098610a136109d260ff6107b2565b986109dc306107ce565b9b97611574956109ee602088016107da565b96808852612d2660208901399397919091610a07610093565b98899560208701610827565b6020820181038252038461076d565b610a39610a2d610093565b938492602084016108b5565b6020820181038252038261076d565b610a5a610a548261079c565b91610796565b2090610a64610093565b9586946020860161092f565b6020820181038252038261076d565b610a91610a8b8261079c565b91610796565b20611bfd565b90565b600090565b60001c90565b610ab1610ab691610a9f565b6104f2565b90565b610ac39054610aa5565b90565b600090565b634e487b7160e01b600052601160045260246000fd5b610aea90610131565b6000198114610af95760010190565b610acb565b916020610b20929493610b1960408201966000830190610535565b0190610535565b565b610b2e610b3391610a9f565b61027e565b90565b610b409054610b22565b90565b90565b610b5a610b55610b5f92610b43565b610335565b610131565b90565b94959295919091610b71610a9a565b50610b7a610724565b50610b8f610b8a600088906104da565b610ab9565b94610b98610ac6565b975b86610bc68a91610bb7610bab610093565b93849260208401610afe565b6020820181038252038261076d565b610bd8610bd28261079c565b91610796565b20610beb89878785879189938795610969565b80610c07610c01610bfc6001610b36565b6100b3565b916100b3565b1080610c3a575b610c2d575050610c23610beb96979899610ae1565b9897969550610b9a565b9850985050505050509050565b50803b610c50610c4a6000610b46565b91610131565b14610c0e565b610c62610c6791610a9f565b6102f4565b90565b610c749054610c56565b90565b600080fd5b60e01b90565b90505190610c8f82610638565b565b90602082820312610cab57610ca891600001610c82565b90565b61009e565b610cb99061065c565b9052565b9190610cd190600060208501940190610cb0565b565b610cdb610093565b3d6000823e3d90fd5b610cf8610cf3610cfd92610b43565b610335565b610632565b90565b634e487b7160e01b600052601260045260246000fd5b610d22610d2891610632565b91610632565b908115610d33570790565b610d00565b60007f496e76616c6964207469636b0000000000000000000000000000000000000000910152565b610d6d600c6020926107ef565b610d7681610d38565b0190565b610d909060208101906000818303910152610d60565b90565b15610d9a57565b610da2610093565b62461bcd60e51b815280610db860048201610d7a565b0390fd5b610dc590610354565b90565b90505190610dd5826100bf565b565b90602082820312610df157610dee91600001610dc8565b90565b61009e565b604090610e20610e279496959396610e166060840198600085019061020b565b602083019061020b565b0190610cb0565b565b610e3290610338565b90565b610e3e90610e29565b90565b6000910312610e4c57565b61009e565b610e5a906100a8565b9052565b9190610e7290600060208501940190610e51565b565b90505190610e8182610134565b565b90602082820312610e9d57610e9a91600001610e74565b90565b61009e565b151590565b610eb081610ea2565b03610eb757565b600080fd5b90505190610ec982610ea7565b565b90602082820312610ee557610ee291600001610ebc565b90565b61009e565b604090610f14610f1b9496959396610f0a6060840198600085019061020b565b602083019061020b565b0190610535565b565b610f286101606107da565b90565b600090565b600090565b600090565b600090565b610f47610f1d565b906020808080808080808080808c610f5d610f2b565b815201610f68610f2b565b815201610f73610f30565b815201610f7e610f35565b815201610f89610f35565b815201610f94610f3a565b815201610f9f610f3a565b815201610faa610f3a565b815201610fb5610f3a565b815201610fc0610f2b565b815201610fcb610f3a565b81525050565b610fd9610f3f565b90565b610fe590610632565b627fffff198114610ff65760000390565b610acb565b6110066101606107da565b90565b90611013906100b3565b9052565b906110219061065c565b9052565b9061102f90610632565b9052565b9061103d90610131565b9052565b61104d61105291610a9f565b61058d565b90565b61105f9054611041565b90565b91602061108492949361107d6040820196600083019061020b565b0190610535565b565b6fffffffffffffffffffffffffffffffff1690565b6110a481611086565b036110ab57565b600080fd5b905051906110bd8261109b565b565b608081830312611101576110d68260008301610e74565b926110fe6110e784602085016110b0565b936110f58160408601610e74565b93606001610e74565b90565b61009e565b61110f906100b3565b9052565b61111c9061065c565b9052565b61112990610632565b9052565b61113690610131565b9052565b90610140806112059361115560008201516000860190611106565b61116760208201516020860190611106565b61117960408201516040860190611113565b61118b60608201516060860190611120565b61119d60808201516080860190611120565b6111af60a082015160a086019061112d565b6111c160c082015160c086019061112d565b6111d360e082015160e086019061112d565b6111e761010082015161010086019061112d565b6111fb610120820151610120860190611106565b015191019061112d565b565b919061121c906000610160850194019061113a565b565b90611227610ac6565b50611269602061123f61123a6002610c6a565b610360565b6322afcccb9061125e8592611252610093565b95869485938493610c7c565b835260048301610cbd565b03915afa908115611bac57600091611b7e575b50918261129261128c6000610ce4565b91610632565b141580611b54575b6112a390610d93565b6112ac816123e6565b6112b4610724565b506112be85610dbc565b6112d96112d36112ce6001610b36565b6100b3565b916100b3565b10600014611aa9576112f36112ee6002610c6a565b610360565b602063a16712959161130488610dbc565b9061132d60006113146001610b36565b956113388a611321610093565b98899788968795610c7c565b855260048501610df6565b03925af1908115611aa45761135f9161135a91600091611a76575b505b610e35565b610360565b9063f637731d90823b15611a71576113979261138c60008094611380610093565b96879586948593610c7c565b835260048301610e5e565b03925af18015611a6c57611a3f575b506113b084610dbc565b6323b872dd336113bf306107ce565b926113f860206113ce8a610dbc565b6370a08231906113ed33926113e1610093565b95869485938493610c7c565b835260048301610218565b03915afa8015611a3a5760209461143660009261142b948491611a0d575b5061141f610093565b98899788968795610c7c565b855260048501610eea565b03925af18015611a08576119dc575b5061144e610fd1565b5061145884610dbc565b61147361146d6114686001610b36565b6100b3565b916100b3565b106000146118455761148484610dbc565b9261149a6114926001610b36565b939291612cfe565b6114da60206114a888610dbc565b6370a08231906114cf6114ba306107ce565b926114c3610093565b95869485938493610c7c565b835260048301610218565b03915afa90811561184057600091611812575b5060009060009260009430611501906107ce565b96429861150c610ffb565b9a60008c019061151b91611009565b60208b019061152991611009565b60408a019061153791611017565b606089019061154591611025565b608088019061155391611025565b60a087019061156191611033565b61156a90610b46565b60c086019061157891611033565b61158190610b46565b60e085019061158f91611033565b61159890610b46565b6101008401906115a791611033565b6101208301906115b691611009565b6101408201906115c591611033565b611629905b6115d383610dbc565b9263095ea7b39360206115f76115f16115ec6003611055565b6105ce565b93610dbc565b6370a082319061161e611609306107ce565b92611612610093565b98899485938493610c7c565b835260048301610218565b03915afa93841561180d576000946117d4575b5061165e60006020949596611669611652610093565b98899687958694610c7c565b845260048401611062565b03925af19081156117cf576116bc926080926117a3575b5061169361168e6003611055565b6105ce565b6116b1600063883164566116a5610093565b96879586948593610c7c565b835260048301611207565b03925af190811561179e5760009161176f575b50906116e36116de6003611055565b6105ce565b6342842e0e6116f1306107ce565b33928592813b1561176a57600061171b91611726829661170f610093565b98899788968795610c7c565b855260048501610eea565b03925af1801561176557611738575b50565b6117589060003d811161175e575b611750818361076d565b810190610e41565b38611735565b503d611746565b610cd3565b610c77565b611790915060803d8111611797575b611788818361076d565b8101906110bf565b50506116cf565b503d61177e565b610cd3565b6117c39060203d81116117c8575b6117bb818361076d565b810190610ecb565b611680565b503d6117b1565b610cd3565b602093945060006117fd61165e92863d8111611806575b6117f5818361076d565b810190610e83565b9594505061163c565b503d6117eb565b610cd3565b611833915060203d8111611839575b61182b818361076d565b810190610e83565b386114ed565b503d611821565b610cd3565b916118506001610b36565b9261187561186f61186a61186388610dbc565b9594612cfe565b610fdc565b91610fdc565b6118b5602061188388610dbc565b6370a08231906118aa611895306107ce565b9261189e610093565b95869485938493610c7c565b835260048301610218565b03915afa9081156119d7576000916119a9575b50600090600092600094306118dc906107ce565b9642986118e7610ffb565b9a60008c01906118f691611009565b60208b019061190491611009565b60408a019061191291611017565b606089019061192091611025565b608088019061192e91611025565b60a087019061193c91611033565b61194590610b46565b60c086019061195391611033565b61195c90610b46565b60e085019061196a91611033565b61197390610b46565b61010084019061198291611033565b61012083019061199191611009565b6101408201906119a091611033565b611629906115ca565b6119ca915060203d81116119d0575b6119c2818361076d565b810190610e83565b386118c8565b503d6119b8565b610cd3565b6119fc9060203d8111611a01575b6119f4818361076d565b810190610ecb565b611445565b503d6119ea565b610cd3565b611a2d9150883d8111611a33575b611a25818361076d565b810190610e83565b38611416565b503d611a1b565b610cd3565b611a5f9060003d8111611a65575b611a57818361076d565b810190610e41565b386113a6565b503d611a4d565b610cd3565b610c77565b611a97915060203d8111611a9d575b611a8f818361076d565b810190610dd7565b38611353565b503d611a85565b610cd3565b611abb611ab66002610c6a565b610360565b602063a167129591611acd6001610b36565b90611af56000611adc8b610dbc565b95611b008a611ae9610093565b98899788968795610c7c565b855260048501610df6565b03925af1908115611b4f5761135f9161135a91600091611b21575b50611355565b611b42915060203d8111611b48575b611b3a818361076d565b810190610dd7565b38611b1b565b503d611b30565b610cd3565b506112a3611b63828590610d16565b611b76611b706000610ce4565b91610632565b14905061129a565b611b9f915060203d8111611ba5575b611b97818361076d565b810190610c91565b3861127c565b503d611b8d565b610cd3565b611bc5611bc0611bca92610131565b610335565b610131565b90565b611bd9611bde91610a9f565b611bb1565b90565b611bf5611bf0611bfa92610131565b610335565b6100a8565b90565b611c1a611c15611c1f92611c0f610724565b50611bcd565b611be1565b610354565b90565b600090565b90565b611c3e611c39611c4392610632565b610335565b611c27565b90565b611c5a611c55611c5f92611c27565b610335565b610131565b90565b611c6b90611c27565b600160ff1b8114611c7c5760000390565b610acb565b90565b611c98611c93611c9d92611c81565b610335565b610632565b90565b611cad620d89e719611c84565b90565b611cc0611cbb611ca0565b610fdc565b90565b60007f5400000000000000000000000000000000000000000000000000000000000000910152565b611cf860016020926107ef565b611d0181611cc3565b0190565b611d1b9060208101906000818303910152611ceb565b90565b15611d2557565b611d2d610093565b62461bcd60e51b815280611d4360048201611d05565b0390fd5b90565b611d5e611d59611d6392611d47565b610335565b610131565b90565b90565b70ffffffffffffffffffffffffffffffffff1690565b611d93611d8e611d9892611d66565b610335565b611d69565b90565b90565b611db2611dad611db792611d9b565b610335565b611d69565b90565b611dce611dc9611dd392611d69565b610335565b610131565b90565b90565b611ded611de8611df292611dd6565b610335565b610131565b90565b90565b611e0c611e07611e1192611df5565b610335565b610131565b90565b611e23611e2991939293610131565b92610131565b91611e35838202610131565b928184041490151715611e4457565b610acb565b90565b60ff1690565b611e66611e61611e6b92611e49565b610335565b611e4c565b90565b611e8d90611e87611e81611e9294611e4c565b91610131565b9061027a565b610131565b90565b90565b611eac611ea7611eb192611e95565b610335565b610131565b90565b90565b611ecb611ec6611ed092611eb4565b610335565b610131565b90565b90565b611eea611ee5611eef92611ed3565b610335565b610131565b90565b90565b611f09611f04611f0e92611ef2565b610335565b610131565b90565b90565b611f28611f23611f2d92611f11565b610335565b610131565b90565b90565b611f47611f42611f4c92611f30565b610335565b610131565b90565b90565b611f66611f61611f6b92611f4f565b610335565b610131565b90565b90565b611f85611f80611f8a92611f6e565b610335565b610131565b90565b90565b611fa4611f9f611fa992611f8d565b610335565b610131565b90565b90565b611fc3611fbe611fc892611fac565b610335565b610131565b90565b611fdf611fda611fe492611e49565b610335565b610131565b90565b90565b611ffe611ff961200392611fe7565b610335565b610131565b90565b90565b61201d61201861202292612006565b610335565b610131565b90565b90565b61203c61203761204192612025565b610335565b610131565b90565b90565b61205b61205661206092612044565b610335565b610131565b90565b90565b61207a61207561207f92612063565b610335565b610131565b90565b90565b61209961209461209e92612082565b610335565b610131565b90565b90565b6120b86120b36120bd926120a1565b610335565b610131565b90565b90565b6120d76120d26120dc926120c0565b610335565b610131565b90565b90565b6120f66120f16120fb926120df565b610335565b610131565b90565b90565b61211561211061211a926120fe565b610335565b610131565b90565b90565b61213461212f6121399261211d565b610335565b610131565b90565b90565b61215361214e6121589261213c565b610335565b610131565b90565b90565b61217261216d6121779261215b565b610335565b610131565b90565b90565b61219161218c6121969261217a565b610335565b610131565b90565b90565b6121b06121ab6121b592612199565b610335565b610131565b90565b90565b6121cf6121ca6121d4926121b8565b610335565b610131565b90565b90565b6121ee6121e96121f3926121d7565b610335565b610131565b90565b90565b61220d612208612212926121f6565b610335565b610131565b90565b90565b61222c61222761223192612215565b610335565b610131565b90565b90565b61224b61224661225092612234565b610335565b610131565b90565b90565b61226a61226561226f92612253565b610335565b610131565b90565b90565b61228961228461228e92612272565b610335565b610131565b90565b90565b6122a86122a36122ad92612291565b610335565b610131565b90565b90565b6122c76122c26122cc926122b0565b610335565b610131565b90565b90565b6122e66122e16122eb926122cf565b610335565b610131565b90565b6122fa61230091610131565b91610131565b90811561230b570490565b610d00565b61232461231f61232992611f4f565b610335565b611e4c565b90565b90565b61234361233e6123489261232c565b610335565b610131565b90565b61235761235d91610131565b91610131565b908115612368570690565b610d00565b61238161237c61238692611d47565b610335565b611e4c565b90565b61239d6123986123a292610b43565b610335565b611e4c565b90565b6123b96123b46123be92611e4c565b610335565b610131565b90565b6123d06123d691939293610131565b92610131565b82018092116123e157565b610acb565b6127f36127f8916123f5611c22565b508061240a6124046000610ce4565b91610632565b12600014612cb35761242b61242661242183611c2a565b611c62565b611c46565b5b906124618261245a61245461244f61244a612445611cb0565b611c2a565b611c46565b610131565b91610131565b1115611d1e565b8161246c6001611d4a565b1661248061247a6000610b46565b91610131565b1415600014612c9e576124ab6124a56ffffcb933bd6fad37aa2d162d1a594001611d9e565b5b611dba565b91806124b76002611dd9565b166124cb6124c56000610b46565b91610131565b03612c61575b806124dc6004611e98565b166124f06124ea6000610b46565b91610131565b03612c24575b806125016008611ed6565b1661251561250f6000610b46565b91610131565b03612be7575b806125266010611f14565b1661253a6125346000610b46565b91610131565b03612baa575b8061254b6020611f52565b1661255f6125596000610b46565b91610131565b03612b6d575b806125706040611f90565b1661258461257e6000610b46565b91610131565b03612b30575b806125956080611fcb565b166125a96125a36000610b46565b91610131565b03612af3575b806125bb610100612009565b166125cf6125c96000610b46565b91610131565b03612ab6575b806125e1610200612047565b166125f56125ef6000610b46565b91610131565b03612a79575b80612607610400612085565b1661261b6126156000610b46565b91610131565b03612a3c575b8061262d6108006120c3565b1661264161263b6000610b46565b91610131565b036129ff575b80612653611000612101565b166126676126616000610b46565b91610131565b036129c2575b8061267961200061213f565b1661268d6126876000610b46565b91610131565b03612985575b8061269f61400061217d565b166126b36126ad6000610b46565b91610131565b03612948575b806126c56180006121bb565b166126d96126d36000610b46565b91610131565b0361290b575b806126ec620100006121f9565b166127006126fa6000610b46565b91610131565b036128ce575b8061271362020000612237565b166127276127216000610b46565b91610131565b03612892575b8061273a62040000612275565b1661274e6127486000610b46565b91610131565b03612857575b612760620800006122b3565b1661277461276e6000610b46565b91610131565b0361281e575b61278d6127876000610ce4565b91610632565b1361280d575b6127bf6127aa826127a46020612310565b90611e6e565b916127b964010000000061232f565b9061234b565b6127d26127cc6000610b46565b91610131565b146000146127fb576127ed6127e76000612389565b5b6123a5565b906123c1565b611be1565b90565b6127ed612808600161236d565b6127e8565b612819906000196122ee565b612793565b906128416128519161283b6b048a170391f7dc42444e8fa26122d2565b90611e14565b61284b6080611e52565b90611e6e565b9061277a565b9161287c61288c916128766d2216e584f5fa1ea926041bedfe98612294565b90611e14565b6128866080611e52565b90611e6e565b91612754565b916128b86128c8916128b26e5d6af8dedb81196699c329225ee604612256565b90611e14565b6128c26080611e52565b90611e6e565b9161272d565b916128f5612905916128ef6f09aa508b5b7a84e1c677de54f3e99bc9612218565b90611e14565b6128ff6080611e52565b90611e6e565b91612706565b916129326129429161292c6f31be135f97d08fd981231505542fcfa66121da565b90611e14565b61293c6080611e52565b90611e6e565b916126df565b9161296f61297f916129696f70d869a156d2a1b890bb3df62baf32f761219c565b90611e14565b6129796080611e52565b90611e6e565b916126b9565b916129ac6129bc916129a66fa9f746462d870fdf8a65dc1f90e061e561215e565b90611e14565b6129b66080611e52565b90611e6e565b91612693565b916129e96129f9916129e36fd097f3bdfd2022b8845ad8f792aa5825612120565b90611e14565b6129f36080611e52565b90611e6e565b9161266d565b91612a26612a3691612a206fe7159475a2c29b7443b29c7fa6e889d96120e2565b90611e14565b612a306080611e52565b90611e6e565b91612647565b91612a63612a7391612a5d6ff3392b0822b70005940c7a398e4b70f36120a4565b90611e14565b612a6d6080611e52565b90611e6e565b91612621565b91612aa0612ab091612a9a6ff987a7253ac413176f2b074cf7815e54612066565b90611e14565b612aaa6080611e52565b90611e6e565b916125fb565b91612add612aed91612ad76ffcbe86c7900a88aedcffc83b479aa3a4612028565b90611e14565b612ae76080611e52565b90611e6e565b916125d5565b91612b1a612b2a91612b146ffe5dee046a99a2a811c461f1969c3053611fea565b90611e14565b612b246080611e52565b90611e6e565b916125af565b91612b57612b6791612b516fff2ea16466c96a3843ec78b326b52861611faf565b90611e14565b612b616080611e52565b90611e6e565b9161258a565b91612b94612ba491612b8e6fff973b41fa98c081472e6896dfb254c0611f71565b90611e14565b612b9e6080611e52565b90611e6e565b91612565565b91612bd1612be191612bcb6fffcb9843d60f6159c9db58835c926644611f33565b90611e14565b612bdb6080611e52565b90611e6e565b91612540565b91612c0e612c1e91612c086fffe5caca7e10e4e61c3624eaa0941cd0611ef5565b90611e14565b612c186080611e52565b90611e6e565b9161251b565b91612c4b612c5b91612c456ffff2e50f5f656932ef12357cf3c7fdcc611eb7565b90611e14565b612c556080611e52565b90611e6e565b916124f6565b91612c88612c9891612c826ffff97272373d413259a46990580e213a611df8565b90611e14565b612c926080611e52565b90611e6e565b916124d1565b6124ab612cae600160801b611d7f565b6124a6565b612cc4612cbf82611c2a565b611c46565b61242c565b600090565b612cda612ce091610632565b91610632565b908115612ceb570590565b610d00565b90612cfb9102610632565b90565b612d2290612d0a612cc9565b50612d1d612d16611cb0565b8290612cce565b612cf0565b9056fe6080604052346100305761001a6100146101de565b91610201565b610022610035565b610d4861082c8239610d4890f35b61003b565b60405190565b600080fd5b601f801991011690565b634e487b7160e01b600052604160045260246000fd5b9061006a90610040565b810190811060018060401b0382111761008257604052565b61004a565b9061009a610093610035565b9283610060565b565b600080fd5b600080fd5b600080fd5b600080fd5b60018060401b0381116100cc576100c8602091610040565b0190565b61004a565b60005b8381106100e5575050906000910152565b8060209183015181850152016100d4565b9092919261010b610106826100b0565b610087565b9381855260208501908284011161012757610125926100d1565b565b6100ab565b9080601f8301121561014a57816020610147935191016100f6565b90565b6100a6565b90565b61015b8161014f565b0361016257565b600080fd5b9050519061017482610152565b565b90916060828403126101d957600082015160018060401b0381116101d457836101a091840161012c565b9260208301519060018060401b0382116101cf576101c3816101cc93860161012c565b93604001610167565b90565b6100a1565b6100a1565b61009c565b6101fc611574803803806101f181610087565b928339810190610176565b909192565b610215929161020f91610475565b336104f2565b565b5190565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610251575b602083101461024c57565b61021b565b91607f1691610241565b600052602060002090565b601f602091010490565b1b90565b9190600861029091029161028a60001984610270565b92610270565b9181191691161790565b90565b6102b16102ac6102b69261014f565b61029a565b61014f565b90565b90565b91906102d26102cd6102da9361029d565b6102b9565b908354610274565b9055565b600090565b6102f5916102ef6102de565b916102bc565b565b5b818110610303575050565b8061031160006001936102e3565b016102f8565b9190601f8111610327575b505050565b6103336103589361025b565b90602061033f84610266565b83019310610360575b61035190610266565b01906102f7565b388080610322565b915061035181929050610348565b1c90565b90610383906000199060080261036e565b191690565b8161039291610372565b906002021790565b906103a481610217565b9060018060401b038211610464576103c6826103c08554610231565b85610317565b602090601f83116001146103fb579180916103ea936000926103ef575b5050610388565b90555b565b909150015138806103e3565b601f1983169161040a8561025b565b9260005b81811061044c57509160029391856001969410610432575b505050020190556103ed565b610442910151601f841690610372565b9055388080610426565b9193602060018192878701518155019501920161040e565b61004a565b906104739161039a565b565b9061048461048b926003610469565b6004610469565b565b90565b60018060a01b031690565b6104af6104aa6104b49261048d565b61029a565b610490565b90565b6104c09061049b565b90565b6104cc90610490565b90565b6104d8906104c3565b9052565b91906104f0906000602085019401906104cf565b565b8061050e61050861050360006104b7565b6104c3565b916104c3565b1461052b576105299161052160006104b7565b9190916106b4565b565b61055061053860006104b7565b600091829163ec442f0560e01b8352600483016104dc565b0390fd5b61056861056361056d92610490565b61029a565b610490565b90565b61057990610554565b90565b61058590610570565b90565b906105929061057c565b600052602052604060002090565b60001c90565b90565b6105b56105ba916105a0565b6105a6565b90565b6105c790546105a9565b90565b6105d39061014f565b9052565b60409061060161060894969593966105f7606084019860008501906104cf565b60208301906105ca565b01906105ca565b565b90610615910361014f565b90565b60001b90565b9061062b60001991610618565b9181191691161790565b9061064a6106456106519261029d565b6102b9565b825461061e565b9055565b634e487b7160e01b600052601160045260246000fd5b61067a6106809193929361014f565b9261014f565b820180921161068b57565b610655565b9061069b910161014f565b90565b91906106b2906000602085019401906105ca565b565b919091806106d36106cd6106c860006104b7565b6104c3565b916104c3565b146000146107b8576106f86106f1836106ec60026105bd565b61066b565b6002610635565b5b8261071561070f61070a60006104b7565b6104c3565b916104c3565b1460001461078b5761073a6107338361072e60026105bd565b61060a565b6002610635565b5b91909161078661077461076e7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361057c565b9361057c565b9361077d610035565b9182918261069e565b0390a3565b6107b3826107ad61079e60008790610588565b916107a8836105bd565b610690565b90610635565b61073b565b6107cc6107c760008390610588565b6105bd565b806107df6107d98561014f565b9161014f565b10610808576107f261080391849061060a565b6107fe60008490610588565b610635565b6106f9565b90610827909192600093849363391434e360e21b8552600485016105d7565b0390fdfe60806040526004361015610013575b6104c6565b61001e6000356100ad565b806306fdde03146100a8578063095ea7b3146100a357806318160ddd1461009e57806323b872dd14610099578063313ce5671461009457806370a082311461008f57806395d89b411461008a578063a9059cbb146100855763dd62ed3e0361000e57610490565b61042c565b6103f7565b6103c2565b61036e565b61030f565b61029f565b610246565b610159565b60e01c90565b60405190565b600080fd5b600080fd5b60009103126100ce57565b6100be565b5190565b60209181520190565b60005b8381106100f4575050906000910152565b8060209183015181850152016100e3565b601f801991011690565b61012e61013760209361013c93610125816100d3565b938480936100d7565b958691016100e0565b610105565b0190565b610156916020820191600081840391015261010f565b90565b34610189576101693660046100c3565b61018561017461062d565b61017c6100b3565b91829182610140565b0390f35b6100b9565b60018060a01b031690565b6101a29061018e565b90565b6101ae81610199565b036101b557565b600080fd5b905035906101c7826101a5565b565b90565b6101d5816101c9565b036101dc57565b600080fd5b905035906101ee826101cc565b565b9190604083820312610219578061020d61021692600086016101ba565b936020016101e1565b90565b6100be565b151590565b61022c9061021e565b9052565b919061024490600060208501940190610223565b565b346102775761027361026261025c3660046101f0565b90610648565b61026a6100b3565b91829182610230565b0390f35b6100b9565b610285906101c9565b9052565b919061029d9060006020850194019061027c565b565b346102cf576102af3660046100c3565b6102cb6102ba610699565b6102c26100b3565b91829182610289565b0390f35b6100b9565b909160608284031261030a576103076102f084600085016101ba565b936102fe81602086016101ba565b936040016101e1565b90565b6100be565b346103405761033c61032b6103253660046102d4565b916106af565b6103336100b3565b91829182610230565b0390f35b6100b9565b60ff1690565b61035490610345565b9052565b919061036c9060006020850194019061034b565b565b3461039e5761037e3660046100c3565b61039a610389610705565b6103916100b3565b91829182610358565b0390f35b6100b9565b906020828203126103bd576103ba916000016101ba565b90565b6100be565b346103f2576103ee6103dd6103d83660046103a3565b610767565b6103e56100b3565b91829182610289565b0390f35b6100b9565b34610427576104073660046100c3565b610423610412610786565b61041a6100b3565b91829182610140565b0390f35b6100b9565b3461045d576104596104486104423660046101f0565b9061079c565b6104506100b3565b91829182610230565b0390f35b6100b9565b919060408382031261048b578061047f61048892600086016101ba565b936020016101ba565b90565b6100be565b346104c1576104bd6104ac6104a6366004610462565b906107d6565b6104b46100b3565b91829182610289565b0390f35b6100b9565b600080fd5b606090565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610506575b602083101461050157565b6104d0565b91607f16916104f6565b60209181520190565b600052602060002090565b906000929180549061053f610538836104e6565b8094610510565b91600181169081600014610598575060011461055b575b505050565b6105689192939450610519565b916000925b8184106105805750500190388080610556565b6001816020929593955484860152019101929061056d565b92949550505060ff1916825215156020020190388080610556565b906105bd91610524565b90565b634e487b7160e01b600052604160045260246000fd5b906105e090610105565b810190811067ffffffffffffffff8211176105fa57604052565b6105c0565b9061061f6106189261060f6100b3565b938480926105b3565b03836105d6565b565b61062a906105ff565b90565b6106356104cb565b506106406003610621565b90565b600090565b61066591610654610643565b5061065d610803565b919091610810565b600190565b600090565b60001c90565b90565b6106846106899161066f565b610675565b90565b6106969054610678565b90565b6106a161066a565b506106ac600261068c565b90565b916106d9926106bc610643565b506106d16106c8610803565b8290849161086e565b91909161093e565b600190565b600090565b90565b90565b6106fd6106f8610702926106e3565b6106e6565b610345565b90565b61070d6106de565b5061071860126106e9565b90565b61072f61072a6107349261018e565b6106e6565b61018e565b90565b6107409061071b565b90565b61074c90610737565b90565b9061075990610743565b600052602052604060002090565b61077e6107839161077661066a565b50600061074f565b61068c565b90565b61078e6104cb565b506107996004610621565b90565b6107b9916107a8610643565b506107b1610803565b91909161093e565b600190565b906107c890610743565b600052602052604060002090565b6107fb916107f16107f6926107e961066a565b5060016107be565b61074f565b61068c565b90565b600090565b61080b6107fe565b503390565b9161081e9291600192610a3d565b565b61082990610199565b9052565b60409061085761085e949695939661084d60608401986000850190610820565b602083019061027c565b019061027c565b565b9061086b91036101c9565b90565b92919261087c8183906107d6565b908161089261088c6000196101c9565b916101c9565b0361089f575b5050509050565b816108b26108ac876101c9565b916101c9565b106108d9576108d093946108c7919392610860565b90600092610a3d565b80388080610898565b506108f9849291926000938493637dc7a0d960e11b85526004850161082d565b0390fd5b90565b61091461090f610919926108fd565b6106e6565b61018e565b90565b61092590610900565b90565b919061093c90600060208501940190610820565b565b918261095b610955610950600061091c565b610199565b91610199565b146109b8578161097c610976610971600061091c565b610199565b91610199565b1461098f5761098d92919091610b9b565b565b6109b461099c600061091c565b600091829163ec442f0560e01b835260048301610928565b0390fd5b6109dd6109c5600061091c565b6000918291634b637e8f60e11b835260048301610928565b0390fd5b60001b90565b906109f4600019916109e1565b9181191691161790565b610a12610a0d610a17926101c9565b6106e6565b6101c9565b90565b90565b90610a32610a2d610a39926109fe565b610a1a565b82546109e7565b9055565b909281610a5b610a55610a50600061091c565b610199565b91610199565b14610b295783610a7c610a76610a71600061091c565b610199565b91610199565b14610b0057610aa083610a9b610a94600186906107be565b879061074f565b610a1d565b610aaa575b505050565b919091610af5610ae3610add7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610743565b93610743565b93610aec6100b3565b91829182610289565b0390a3388080610aa5565b610b25610b0d600061091c565b6000918291634a1406b160e11b835260048301610928565b0390fd5b610b4e610b36600061091c565b600091829163e602df0560e01b835260048301610928565b0390fd5b634e487b7160e01b600052601160045260246000fd5b610b77610b7d919392936101c9565b926101c9565b8201809211610b8857565b610b52565b90610b9891016101c9565b90565b91909180610bba610bb4610baf600061091c565b610199565b91610199565b14600014610c9f57610bdf610bd883610bd3600261068c565b610b68565b6002610a1d565b5b82610bfc610bf6610bf1600061091c565b610199565b91610199565b14600014610c7257610c21610c1a83610c15600261068c565b610860565b6002610a1d565b5b919091610c6d610c5b610c557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610743565b93610743565b93610c646100b3565b91829182610289565b0390a3565b610c9a82610c94610c856000879061074f565b91610c8f8361068c565b610b8d565b90610a1d565b610c22565b610cb3610cae6000839061074f565b61068c565b80610cc6610cc0856101c9565b916101c9565b10610cef57610cd9610cea918490610860565b610ce56000849061074f565b610a1d565b610be0565b90610d0e909192600093849363391434e360e21b85526004850161082d565b0390fdfea264697066735822122013ff5e9e70f5f36f020625898ba2c6bbed6eb31a553616c2f30e7f47b10f11fa64736f6c634300081c0033a2646970667358221220ded77fdb9b9eae0edb6be683fe5a61a8b2381ecb4d64938f402bd9a484ac21e264736f6c634300081c0033
Deployed Bytecode
0x60806040526004361015610013575b61071f565b61001e60003561008d565b80632b66df51146100885780633fc8cef3146100835780635b5491821461007e578063680c63541461007957806370ae92d214610074578063791b98bc1461006f57638f54b02d0361000e576106f3565b6105fd565b610558565b610472565b61038f565b6102bf565b61022e565b60e01c90565b60405190565b600080fd5b600080fd5b600080fd5b60018060a01b031690565b6100bc906100a8565b90565b6100c8816100b3565b036100cf57565b600080fd5b905035906100e1826100bf565b565b600080fd5b600080fd5b600080fd5b909182601f8301121561012c5781359167ffffffffffffffff831161012757602001926001830284011161012257565b6100ed565b6100e8565b6100e3565b90565b61013d81610131565b0361014457565b600080fd5b9050359061015682610134565b565b90565b61016481610158565b0361016b57565b600080fd5b9050359061017d8261015b565b565b909160a0828403126102065761019883600084016100d4565b92602083013567ffffffffffffffff811161020157816101b99185016100f2565b92909360408101359167ffffffffffffffff83116101fc576101e0846101f99484016100f2565b9390946101f08160608601610149565b93608001610170565b90565b6100a3565b6100a3565b61009e565b610214906100b3565b9052565b919061022c9060006020850194019061020b565b565b346102655761026161025061024436600461017f565b95949094939193610969565b610258610093565b91829182610218565b0390f35b610099565b600091031261027557565b61009e565b1c90565b60018060a01b031690565b61029990600861029e930261027a565b61027e565b90565b906102ac9154610289565b90565b6102bc60016000906102a1565b90565b346102ef576102cf36600461026a565b6102eb6102da6102af565b6102e2610093565b91829182610218565b0390f35b610099565b60018060a01b031690565b61030f906008610314930261027a565b6102f4565b90565b9061032291546102ff565b90565b6103326002600090610317565b90565b90565b61034c610347610351926100a8565b610335565b6100a8565b90565b61035d90610338565b90565b61036990610354565b90565b61037590610360565b9052565b919061038d9060006020850194019061036c565b565b346103bf5761039f36600461026a565b6103bb6103aa610325565b6103b2610093565b91829182610379565b0390f35b610099565b919060808382031261043c576103dd81600085016100d4565b92602081013567ffffffffffffffff811161043757826103fe9183016100f2565b929093604083013567ffffffffffffffff8111610432576104248361042f9286016100f2565b939094606001610149565b90565b6100a3565b6100a3565b61009e565b61044a90610158565b9052565b91602061047092949361046960408201966000830190610441565b019061020b565b565b346104aa576104916104853660046103c4565b94939093929192610b62565b906104a661049d610093565b9283928361044e565b0390f35b610099565b906020828203126104c9576104c6916000016100d4565b90565b61009e565b6104d790610354565b90565b906104e4906104ce565b600052602052604060002090565b90565b61050590600861050a930261027a565b6104f2565b90565b9061051891546104f5565b90565b6105329061052d6000916000926104da565b61050d565b90565b61053e90610131565b9052565b919061055690600060208501940190610535565b565b346105885761058461057361056e3660046104af565b61051b565b61057b610093565b91829182610542565b0390f35b610099565b60018060a01b031690565b6105a89060086105ad930261027a565b61058d565b90565b906105bb9154610598565b90565b6105cb60036000906105b0565b90565b6105d790610354565b90565b6105e3906105ce565b9052565b91906105fb906000602085019401906105da565b565b3461062d5761060d36600461026a565b6106296106186105be565b610620610093565b918291826105e7565b0390f35b610099565b60020b90565b61064181610632565b0361064857565b600080fd5b9050359061065a82610638565b565b62ffffff1690565b61066d8161065c565b0361067457565b600080fd5b9050359061068682610664565b565b610691906100b3565b90565b61069d81610688565b036106a457565b600080fd5b905035906106b682610694565b565b90916060828403126106ee576106eb6106d4846000850161064d565b936106e28160208601610679565b936040016106a9565b90565b61009e565b61071b61070a6107043660046106b8565b9161121e565b610712610093565b91829182610542565b0390f35b600080fd5b600090565b91602061074b9294936107446040820196600083019061020b565b0190610441565b565b601f801991011690565b634e487b7160e01b600052604160045260246000fd5b906107779061074d565b810190811067ffffffffffffffff82111761079157604052565b610757565b60200190565b5190565b90565b60ff60f81b1690565b60f81b90565b6107c66107c16107cb926107a0565b6107ac565b6107a3565b90565b6107d790610354565b90565b906107ed6107e6610093565b928361076d565b565b60209181520190565b90826000939282370152565b919061081e8161081781610823956107ef565b80956107f8565b61074d565b0190565b9594926108609461084a6108589360409560608b01918b830360008d0152610804565b9188830360208a0152610804565b940190610535565b565b905090565b60005b83811061087b575050906000910152565b80602091830151818501520161086a565b6108b16108a89260209261089f8161079c565b94858093610862565b93849101610867565b0190565b6108c3906108c9939261088c565b9061088c565b90565b90565b6108db6108e0916107a3565b6108cc565b9052565b60601b90565b6108f3906108e4565b90565b6108ff906108ea565b90565b61090e610913916100b3565b6108f6565b9052565b90565b61092661092b91610158565b610917565b9052565b9261095d60146109659461095560018861094d60209b9a8c996108cf565b018092610902565b01809261091a565b01809261091a565b0190565b92610a48610a70939692610a22610a97996109b1610a7f999861098a610724565b506109a2610996610093565b93849260208401610729565b6020820181038252038261076d565b6109c36109bd8261079c565b91610796565b2098610a136109d260ff6107b2565b986109dc306107ce565b9b97611574956109ee602088016107da565b96808852612d2660208901399397919091610a07610093565b98899560208701610827565b6020820181038252038461076d565b610a39610a2d610093565b938492602084016108b5565b6020820181038252038261076d565b610a5a610a548261079c565b91610796565b2090610a64610093565b9586946020860161092f565b6020820181038252038261076d565b610a91610a8b8261079c565b91610796565b20611bfd565b90565b600090565b60001c90565b610ab1610ab691610a9f565b6104f2565b90565b610ac39054610aa5565b90565b600090565b634e487b7160e01b600052601160045260246000fd5b610aea90610131565b6000198114610af95760010190565b610acb565b916020610b20929493610b1960408201966000830190610535565b0190610535565b565b610b2e610b3391610a9f565b61027e565b90565b610b409054610b22565b90565b90565b610b5a610b55610b5f92610b43565b610335565b610131565b90565b94959295919091610b71610a9a565b50610b7a610724565b50610b8f610b8a600088906104da565b610ab9565b94610b98610ac6565b975b86610bc68a91610bb7610bab610093565b93849260208401610afe565b6020820181038252038261076d565b610bd8610bd28261079c565b91610796565b20610beb89878785879189938795610969565b80610c07610c01610bfc6001610b36565b6100b3565b916100b3565b1080610c3a575b610c2d575050610c23610beb96979899610ae1565b9897969550610b9a565b9850985050505050509050565b50803b610c50610c4a6000610b46565b91610131565b14610c0e565b610c62610c6791610a9f565b6102f4565b90565b610c749054610c56565b90565b600080fd5b60e01b90565b90505190610c8f82610638565b565b90602082820312610cab57610ca891600001610c82565b90565b61009e565b610cb99061065c565b9052565b9190610cd190600060208501940190610cb0565b565b610cdb610093565b3d6000823e3d90fd5b610cf8610cf3610cfd92610b43565b610335565b610632565b90565b634e487b7160e01b600052601260045260246000fd5b610d22610d2891610632565b91610632565b908115610d33570790565b610d00565b60007f496e76616c6964207469636b0000000000000000000000000000000000000000910152565b610d6d600c6020926107ef565b610d7681610d38565b0190565b610d909060208101906000818303910152610d60565b90565b15610d9a57565b610da2610093565b62461bcd60e51b815280610db860048201610d7a565b0390fd5b610dc590610354565b90565b90505190610dd5826100bf565b565b90602082820312610df157610dee91600001610dc8565b90565b61009e565b604090610e20610e279496959396610e166060840198600085019061020b565b602083019061020b565b0190610cb0565b565b610e3290610338565b90565b610e3e90610e29565b90565b6000910312610e4c57565b61009e565b610e5a906100a8565b9052565b9190610e7290600060208501940190610e51565b565b90505190610e8182610134565b565b90602082820312610e9d57610e9a91600001610e74565b90565b61009e565b151590565b610eb081610ea2565b03610eb757565b600080fd5b90505190610ec982610ea7565b565b90602082820312610ee557610ee291600001610ebc565b90565b61009e565b604090610f14610f1b9496959396610f0a6060840198600085019061020b565b602083019061020b565b0190610535565b565b610f286101606107da565b90565b600090565b600090565b600090565b600090565b610f47610f1d565b906020808080808080808080808c610f5d610f2b565b815201610f68610f2b565b815201610f73610f30565b815201610f7e610f35565b815201610f89610f35565b815201610f94610f3a565b815201610f9f610f3a565b815201610faa610f3a565b815201610fb5610f3a565b815201610fc0610f2b565b815201610fcb610f3a565b81525050565b610fd9610f3f565b90565b610fe590610632565b627fffff198114610ff65760000390565b610acb565b6110066101606107da565b90565b90611013906100b3565b9052565b906110219061065c565b9052565b9061102f90610632565b9052565b9061103d90610131565b9052565b61104d61105291610a9f565b61058d565b90565b61105f9054611041565b90565b91602061108492949361107d6040820196600083019061020b565b0190610535565b565b6fffffffffffffffffffffffffffffffff1690565b6110a481611086565b036110ab57565b600080fd5b905051906110bd8261109b565b565b608081830312611101576110d68260008301610e74565b926110fe6110e784602085016110b0565b936110f58160408601610e74565b93606001610e74565b90565b61009e565b61110f906100b3565b9052565b61111c9061065c565b9052565b61112990610632565b9052565b61113690610131565b9052565b90610140806112059361115560008201516000860190611106565b61116760208201516020860190611106565b61117960408201516040860190611113565b61118b60608201516060860190611120565b61119d60808201516080860190611120565b6111af60a082015160a086019061112d565b6111c160c082015160c086019061112d565b6111d360e082015160e086019061112d565b6111e761010082015161010086019061112d565b6111fb610120820151610120860190611106565b015191019061112d565b565b919061121c906000610160850194019061113a565b565b90611227610ac6565b50611269602061123f61123a6002610c6a565b610360565b6322afcccb9061125e8592611252610093565b95869485938493610c7c565b835260048301610cbd565b03915afa908115611bac57600091611b7e575b50918261129261128c6000610ce4565b91610632565b141580611b54575b6112a390610d93565b6112ac816123e6565b6112b4610724565b506112be85610dbc565b6112d96112d36112ce6001610b36565b6100b3565b916100b3565b10600014611aa9576112f36112ee6002610c6a565b610360565b602063a16712959161130488610dbc565b9061132d60006113146001610b36565b956113388a611321610093565b98899788968795610c7c565b855260048501610df6565b03925af1908115611aa45761135f9161135a91600091611a76575b505b610e35565b610360565b9063f637731d90823b15611a71576113979261138c60008094611380610093565b96879586948593610c7c565b835260048301610e5e565b03925af18015611a6c57611a3f575b506113b084610dbc565b6323b872dd336113bf306107ce565b926113f860206113ce8a610dbc565b6370a08231906113ed33926113e1610093565b95869485938493610c7c565b835260048301610218565b03915afa8015611a3a5760209461143660009261142b948491611a0d575b5061141f610093565b98899788968795610c7c565b855260048501610eea565b03925af18015611a08576119dc575b5061144e610fd1565b5061145884610dbc565b61147361146d6114686001610b36565b6100b3565b916100b3565b106000146118455761148484610dbc565b9261149a6114926001610b36565b939291612cfe565b6114da60206114a888610dbc565b6370a08231906114cf6114ba306107ce565b926114c3610093565b95869485938493610c7c565b835260048301610218565b03915afa90811561184057600091611812575b5060009060009260009430611501906107ce565b96429861150c610ffb565b9a60008c019061151b91611009565b60208b019061152991611009565b60408a019061153791611017565b606089019061154591611025565b608088019061155391611025565b60a087019061156191611033565b61156a90610b46565b60c086019061157891611033565b61158190610b46565b60e085019061158f91611033565b61159890610b46565b6101008401906115a791611033565b6101208301906115b691611009565b6101408201906115c591611033565b611629905b6115d383610dbc565b9263095ea7b39360206115f76115f16115ec6003611055565b6105ce565b93610dbc565b6370a082319061161e611609306107ce565b92611612610093565b98899485938493610c7c565b835260048301610218565b03915afa93841561180d576000946117d4575b5061165e60006020949596611669611652610093565b98899687958694610c7c565b845260048401611062565b03925af19081156117cf576116bc926080926117a3575b5061169361168e6003611055565b6105ce565b6116b1600063883164566116a5610093565b96879586948593610c7c565b835260048301611207565b03925af190811561179e5760009161176f575b50906116e36116de6003611055565b6105ce565b6342842e0e6116f1306107ce565b33928592813b1561176a57600061171b91611726829661170f610093565b98899788968795610c7c565b855260048501610eea565b03925af1801561176557611738575b50565b6117589060003d811161175e575b611750818361076d565b810190610e41565b38611735565b503d611746565b610cd3565b610c77565b611790915060803d8111611797575b611788818361076d565b8101906110bf565b50506116cf565b503d61177e565b610cd3565b6117c39060203d81116117c8575b6117bb818361076d565b810190610ecb565b611680565b503d6117b1565b610cd3565b602093945060006117fd61165e92863d8111611806575b6117f5818361076d565b810190610e83565b9594505061163c565b503d6117eb565b610cd3565b611833915060203d8111611839575b61182b818361076d565b810190610e83565b386114ed565b503d611821565b610cd3565b916118506001610b36565b9261187561186f61186a61186388610dbc565b9594612cfe565b610fdc565b91610fdc565b6118b5602061188388610dbc565b6370a08231906118aa611895306107ce565b9261189e610093565b95869485938493610c7c565b835260048301610218565b03915afa9081156119d7576000916119a9575b50600090600092600094306118dc906107ce565b9642986118e7610ffb565b9a60008c01906118f691611009565b60208b019061190491611009565b60408a019061191291611017565b606089019061192091611025565b608088019061192e91611025565b60a087019061193c91611033565b61194590610b46565b60c086019061195391611033565b61195c90610b46565b60e085019061196a91611033565b61197390610b46565b61010084019061198291611033565b61012083019061199191611009565b6101408201906119a091611033565b611629906115ca565b6119ca915060203d81116119d0575b6119c2818361076d565b810190610e83565b386118c8565b503d6119b8565b610cd3565b6119fc9060203d8111611a01575b6119f4818361076d565b810190610ecb565b611445565b503d6119ea565b610cd3565b611a2d9150883d8111611a33575b611a25818361076d565b810190610e83565b38611416565b503d611a1b565b610cd3565b611a5f9060003d8111611a65575b611a57818361076d565b810190610e41565b386113a6565b503d611a4d565b610cd3565b610c77565b611a97915060203d8111611a9d575b611a8f818361076d565b810190610dd7565b38611353565b503d611a85565b610cd3565b611abb611ab66002610c6a565b610360565b602063a167129591611acd6001610b36565b90611af56000611adc8b610dbc565b95611b008a611ae9610093565b98899788968795610c7c565b855260048501610df6565b03925af1908115611b4f5761135f9161135a91600091611b21575b50611355565b611b42915060203d8111611b48575b611b3a818361076d565b810190610dd7565b38611b1b565b503d611b30565b610cd3565b506112a3611b63828590610d16565b611b76611b706000610ce4565b91610632565b14905061129a565b611b9f915060203d8111611ba5575b611b97818361076d565b810190610c91565b3861127c565b503d611b8d565b610cd3565b611bc5611bc0611bca92610131565b610335565b610131565b90565b611bd9611bde91610a9f565b611bb1565b90565b611bf5611bf0611bfa92610131565b610335565b6100a8565b90565b611c1a611c15611c1f92611c0f610724565b50611bcd565b611be1565b610354565b90565b600090565b90565b611c3e611c39611c4392610632565b610335565b611c27565b90565b611c5a611c55611c5f92611c27565b610335565b610131565b90565b611c6b90611c27565b600160ff1b8114611c7c5760000390565b610acb565b90565b611c98611c93611c9d92611c81565b610335565b610632565b90565b611cad620d89e719611c84565b90565b611cc0611cbb611ca0565b610fdc565b90565b60007f5400000000000000000000000000000000000000000000000000000000000000910152565b611cf860016020926107ef565b611d0181611cc3565b0190565b611d1b9060208101906000818303910152611ceb565b90565b15611d2557565b611d2d610093565b62461bcd60e51b815280611d4360048201611d05565b0390fd5b90565b611d5e611d59611d6392611d47565b610335565b610131565b90565b90565b70ffffffffffffffffffffffffffffffffff1690565b611d93611d8e611d9892611d66565b610335565b611d69565b90565b90565b611db2611dad611db792611d9b565b610335565b611d69565b90565b611dce611dc9611dd392611d69565b610335565b610131565b90565b90565b611ded611de8611df292611dd6565b610335565b610131565b90565b90565b611e0c611e07611e1192611df5565b610335565b610131565b90565b611e23611e2991939293610131565b92610131565b91611e35838202610131565b928184041490151715611e4457565b610acb565b90565b60ff1690565b611e66611e61611e6b92611e49565b610335565b611e4c565b90565b611e8d90611e87611e81611e9294611e4c565b91610131565b9061027a565b610131565b90565b90565b611eac611ea7611eb192611e95565b610335565b610131565b90565b90565b611ecb611ec6611ed092611eb4565b610335565b610131565b90565b90565b611eea611ee5611eef92611ed3565b610335565b610131565b90565b90565b611f09611f04611f0e92611ef2565b610335565b610131565b90565b90565b611f28611f23611f2d92611f11565b610335565b610131565b90565b90565b611f47611f42611f4c92611f30565b610335565b610131565b90565b90565b611f66611f61611f6b92611f4f565b610335565b610131565b90565b90565b611f85611f80611f8a92611f6e565b610335565b610131565b90565b90565b611fa4611f9f611fa992611f8d565b610335565b610131565b90565b90565b611fc3611fbe611fc892611fac565b610335565b610131565b90565b611fdf611fda611fe492611e49565b610335565b610131565b90565b90565b611ffe611ff961200392611fe7565b610335565b610131565b90565b90565b61201d61201861202292612006565b610335565b610131565b90565b90565b61203c61203761204192612025565b610335565b610131565b90565b90565b61205b61205661206092612044565b610335565b610131565b90565b90565b61207a61207561207f92612063565b610335565b610131565b90565b90565b61209961209461209e92612082565b610335565b610131565b90565b90565b6120b86120b36120bd926120a1565b610335565b610131565b90565b90565b6120d76120d26120dc926120c0565b610335565b610131565b90565b90565b6120f66120f16120fb926120df565b610335565b610131565b90565b90565b61211561211061211a926120fe565b610335565b610131565b90565b90565b61213461212f6121399261211d565b610335565b610131565b90565b90565b61215361214e6121589261213c565b610335565b610131565b90565b90565b61217261216d6121779261215b565b610335565b610131565b90565b90565b61219161218c6121969261217a565b610335565b610131565b90565b90565b6121b06121ab6121b592612199565b610335565b610131565b90565b90565b6121cf6121ca6121d4926121b8565b610335565b610131565b90565b90565b6121ee6121e96121f3926121d7565b610335565b610131565b90565b90565b61220d612208612212926121f6565b610335565b610131565b90565b90565b61222c61222761223192612215565b610335565b610131565b90565b90565b61224b61224661225092612234565b610335565b610131565b90565b90565b61226a61226561226f92612253565b610335565b610131565b90565b90565b61228961228461228e92612272565b610335565b610131565b90565b90565b6122a86122a36122ad92612291565b610335565b610131565b90565b90565b6122c76122c26122cc926122b0565b610335565b610131565b90565b90565b6122e66122e16122eb926122cf565b610335565b610131565b90565b6122fa61230091610131565b91610131565b90811561230b570490565b610d00565b61232461231f61232992611f4f565b610335565b611e4c565b90565b90565b61234361233e6123489261232c565b610335565b610131565b90565b61235761235d91610131565b91610131565b908115612368570690565b610d00565b61238161237c61238692611d47565b610335565b611e4c565b90565b61239d6123986123a292610b43565b610335565b611e4c565b90565b6123b96123b46123be92611e4c565b610335565b610131565b90565b6123d06123d691939293610131565b92610131565b82018092116123e157565b610acb565b6127f36127f8916123f5611c22565b508061240a6124046000610ce4565b91610632565b12600014612cb35761242b61242661242183611c2a565b611c62565b611c46565b5b906124618261245a61245461244f61244a612445611cb0565b611c2a565b611c46565b610131565b91610131565b1115611d1e565b8161246c6001611d4a565b1661248061247a6000610b46565b91610131565b1415600014612c9e576124ab6124a56ffffcb933bd6fad37aa2d162d1a594001611d9e565b5b611dba565b91806124b76002611dd9565b166124cb6124c56000610b46565b91610131565b03612c61575b806124dc6004611e98565b166124f06124ea6000610b46565b91610131565b03612c24575b806125016008611ed6565b1661251561250f6000610b46565b91610131565b03612be7575b806125266010611f14565b1661253a6125346000610b46565b91610131565b03612baa575b8061254b6020611f52565b1661255f6125596000610b46565b91610131565b03612b6d575b806125706040611f90565b1661258461257e6000610b46565b91610131565b03612b30575b806125956080611fcb565b166125a96125a36000610b46565b91610131565b03612af3575b806125bb610100612009565b166125cf6125c96000610b46565b91610131565b03612ab6575b806125e1610200612047565b166125f56125ef6000610b46565b91610131565b03612a79575b80612607610400612085565b1661261b6126156000610b46565b91610131565b03612a3c575b8061262d6108006120c3565b1661264161263b6000610b46565b91610131565b036129ff575b80612653611000612101565b166126676126616000610b46565b91610131565b036129c2575b8061267961200061213f565b1661268d6126876000610b46565b91610131565b03612985575b8061269f61400061217d565b166126b36126ad6000610b46565b91610131565b03612948575b806126c56180006121bb565b166126d96126d36000610b46565b91610131565b0361290b575b806126ec620100006121f9565b166127006126fa6000610b46565b91610131565b036128ce575b8061271362020000612237565b166127276127216000610b46565b91610131565b03612892575b8061273a62040000612275565b1661274e6127486000610b46565b91610131565b03612857575b612760620800006122b3565b1661277461276e6000610b46565b91610131565b0361281e575b61278d6127876000610ce4565b91610632565b1361280d575b6127bf6127aa826127a46020612310565b90611e6e565b916127b964010000000061232f565b9061234b565b6127d26127cc6000610b46565b91610131565b146000146127fb576127ed6127e76000612389565b5b6123a5565b906123c1565b611be1565b90565b6127ed612808600161236d565b6127e8565b612819906000196122ee565b612793565b906128416128519161283b6b048a170391f7dc42444e8fa26122d2565b90611e14565b61284b6080611e52565b90611e6e565b9061277a565b9161287c61288c916128766d2216e584f5fa1ea926041bedfe98612294565b90611e14565b6128866080611e52565b90611e6e565b91612754565b916128b86128c8916128b26e5d6af8dedb81196699c329225ee604612256565b90611e14565b6128c26080611e52565b90611e6e565b9161272d565b916128f5612905916128ef6f09aa508b5b7a84e1c677de54f3e99bc9612218565b90611e14565b6128ff6080611e52565b90611e6e565b91612706565b916129326129429161292c6f31be135f97d08fd981231505542fcfa66121da565b90611e14565b61293c6080611e52565b90611e6e565b916126df565b9161296f61297f916129696f70d869a156d2a1b890bb3df62baf32f761219c565b90611e14565b6129796080611e52565b90611e6e565b916126b9565b916129ac6129bc916129a66fa9f746462d870fdf8a65dc1f90e061e561215e565b90611e14565b6129b66080611e52565b90611e6e565b91612693565b916129e96129f9916129e36fd097f3bdfd2022b8845ad8f792aa5825612120565b90611e14565b6129f36080611e52565b90611e6e565b9161266d565b91612a26612a3691612a206fe7159475a2c29b7443b29c7fa6e889d96120e2565b90611e14565b612a306080611e52565b90611e6e565b91612647565b91612a63612a7391612a5d6ff3392b0822b70005940c7a398e4b70f36120a4565b90611e14565b612a6d6080611e52565b90611e6e565b91612621565b91612aa0612ab091612a9a6ff987a7253ac413176f2b074cf7815e54612066565b90611e14565b612aaa6080611e52565b90611e6e565b916125fb565b91612add612aed91612ad76ffcbe86c7900a88aedcffc83b479aa3a4612028565b90611e14565b612ae76080611e52565b90611e6e565b916125d5565b91612b1a612b2a91612b146ffe5dee046a99a2a811c461f1969c3053611fea565b90611e14565b612b246080611e52565b90611e6e565b916125af565b91612b57612b6791612b516fff2ea16466c96a3843ec78b326b52861611faf565b90611e14565b612b616080611e52565b90611e6e565b9161258a565b91612b94612ba491612b8e6fff973b41fa98c081472e6896dfb254c0611f71565b90611e14565b612b9e6080611e52565b90611e6e565b91612565565b91612bd1612be191612bcb6fffcb9843d60f6159c9db58835c926644611f33565b90611e14565b612bdb6080611e52565b90611e6e565b91612540565b91612c0e612c1e91612c086fffe5caca7e10e4e61c3624eaa0941cd0611ef5565b90611e14565b612c186080611e52565b90611e6e565b9161251b565b91612c4b612c5b91612c456ffff2e50f5f656932ef12357cf3c7fdcc611eb7565b90611e14565b612c556080611e52565b90611e6e565b916124f6565b91612c88612c9891612c826ffff97272373d413259a46990580e213a611df8565b90611e14565b612c926080611e52565b90611e6e565b916124d1565b6124ab612cae600160801b611d7f565b6124a6565b612cc4612cbf82611c2a565b611c46565b61242c565b600090565b612cda612ce091610632565b91610632565b908115612ceb570590565b610d00565b90612cfb9102610632565b90565b612d2290612d0a612cc9565b50612d1d612d16611cb0565b8290612cce565b612cf0565b9056fe6080604052346100305761001a6100146101de565b91610201565b610022610035565b610d4861082c8239610d4890f35b61003b565b60405190565b600080fd5b601f801991011690565b634e487b7160e01b600052604160045260246000fd5b9061006a90610040565b810190811060018060401b0382111761008257604052565b61004a565b9061009a610093610035565b9283610060565b565b600080fd5b600080fd5b600080fd5b600080fd5b60018060401b0381116100cc576100c8602091610040565b0190565b61004a565b60005b8381106100e5575050906000910152565b8060209183015181850152016100d4565b9092919261010b610106826100b0565b610087565b9381855260208501908284011161012757610125926100d1565b565b6100ab565b9080601f8301121561014a57816020610147935191016100f6565b90565b6100a6565b90565b61015b8161014f565b0361016257565b600080fd5b9050519061017482610152565b565b90916060828403126101d957600082015160018060401b0381116101d457836101a091840161012c565b9260208301519060018060401b0382116101cf576101c3816101cc93860161012c565b93604001610167565b90565b6100a1565b6100a1565b61009c565b6101fc611574803803806101f181610087565b928339810190610176565b909192565b610215929161020f91610475565b336104f2565b565b5190565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610251575b602083101461024c57565b61021b565b91607f1691610241565b600052602060002090565b601f602091010490565b1b90565b9190600861029091029161028a60001984610270565b92610270565b9181191691161790565b90565b6102b16102ac6102b69261014f565b61029a565b61014f565b90565b90565b91906102d26102cd6102da9361029d565b6102b9565b908354610274565b9055565b600090565b6102f5916102ef6102de565b916102bc565b565b5b818110610303575050565b8061031160006001936102e3565b016102f8565b9190601f8111610327575b505050565b6103336103589361025b565b90602061033f84610266565b83019310610360575b61035190610266565b01906102f7565b388080610322565b915061035181929050610348565b1c90565b90610383906000199060080261036e565b191690565b8161039291610372565b906002021790565b906103a481610217565b9060018060401b038211610464576103c6826103c08554610231565b85610317565b602090601f83116001146103fb579180916103ea936000926103ef575b5050610388565b90555b565b909150015138806103e3565b601f1983169161040a8561025b565b9260005b81811061044c57509160029391856001969410610432575b505050020190556103ed565b610442910151601f841690610372565b9055388080610426565b9193602060018192878701518155019501920161040e565b61004a565b906104739161039a565b565b9061048461048b926003610469565b6004610469565b565b90565b60018060a01b031690565b6104af6104aa6104b49261048d565b61029a565b610490565b90565b6104c09061049b565b90565b6104cc90610490565b90565b6104d8906104c3565b9052565b91906104f0906000602085019401906104cf565b565b8061050e61050861050360006104b7565b6104c3565b916104c3565b1461052b576105299161052160006104b7565b9190916106b4565b565b61055061053860006104b7565b600091829163ec442f0560e01b8352600483016104dc565b0390fd5b61056861056361056d92610490565b61029a565b610490565b90565b61057990610554565b90565b61058590610570565b90565b906105929061057c565b600052602052604060002090565b60001c90565b90565b6105b56105ba916105a0565b6105a6565b90565b6105c790546105a9565b90565b6105d39061014f565b9052565b60409061060161060894969593966105f7606084019860008501906104cf565b60208301906105ca565b01906105ca565b565b90610615910361014f565b90565b60001b90565b9061062b60001991610618565b9181191691161790565b9061064a6106456106519261029d565b6102b9565b825461061e565b9055565b634e487b7160e01b600052601160045260246000fd5b61067a6106809193929361014f565b9261014f565b820180921161068b57565b610655565b9061069b910161014f565b90565b91906106b2906000602085019401906105ca565b565b919091806106d36106cd6106c860006104b7565b6104c3565b916104c3565b146000146107b8576106f86106f1836106ec60026105bd565b61066b565b6002610635565b5b8261071561070f61070a60006104b7565b6104c3565b916104c3565b1460001461078b5761073a6107338361072e60026105bd565b61060a565b6002610635565b5b91909161078661077461076e7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361057c565b9361057c565b9361077d610035565b9182918261069e565b0390a3565b6107b3826107ad61079e60008790610588565b916107a8836105bd565b610690565b90610635565b61073b565b6107cc6107c760008390610588565b6105bd565b806107df6107d98561014f565b9161014f565b10610808576107f261080391849061060a565b6107fe60008490610588565b610635565b6106f9565b90610827909192600093849363391434e360e21b8552600485016105d7565b0390fdfe60806040526004361015610013575b6104c6565b61001e6000356100ad565b806306fdde03146100a8578063095ea7b3146100a357806318160ddd1461009e57806323b872dd14610099578063313ce5671461009457806370a082311461008f57806395d89b411461008a578063a9059cbb146100855763dd62ed3e0361000e57610490565b61042c565b6103f7565b6103c2565b61036e565b61030f565b61029f565b610246565b610159565b60e01c90565b60405190565b600080fd5b600080fd5b60009103126100ce57565b6100be565b5190565b60209181520190565b60005b8381106100f4575050906000910152565b8060209183015181850152016100e3565b601f801991011690565b61012e61013760209361013c93610125816100d3565b938480936100d7565b958691016100e0565b610105565b0190565b610156916020820191600081840391015261010f565b90565b34610189576101693660046100c3565b61018561017461062d565b61017c6100b3565b91829182610140565b0390f35b6100b9565b60018060a01b031690565b6101a29061018e565b90565b6101ae81610199565b036101b557565b600080fd5b905035906101c7826101a5565b565b90565b6101d5816101c9565b036101dc57565b600080fd5b905035906101ee826101cc565b565b9190604083820312610219578061020d61021692600086016101ba565b936020016101e1565b90565b6100be565b151590565b61022c9061021e565b9052565b919061024490600060208501940190610223565b565b346102775761027361026261025c3660046101f0565b90610648565b61026a6100b3565b91829182610230565b0390f35b6100b9565b610285906101c9565b9052565b919061029d9060006020850194019061027c565b565b346102cf576102af3660046100c3565b6102cb6102ba610699565b6102c26100b3565b91829182610289565b0390f35b6100b9565b909160608284031261030a576103076102f084600085016101ba565b936102fe81602086016101ba565b936040016101e1565b90565b6100be565b346103405761033c61032b6103253660046102d4565b916106af565b6103336100b3565b91829182610230565b0390f35b6100b9565b60ff1690565b61035490610345565b9052565b919061036c9060006020850194019061034b565b565b3461039e5761037e3660046100c3565b61039a610389610705565b6103916100b3565b91829182610358565b0390f35b6100b9565b906020828203126103bd576103ba916000016101ba565b90565b6100be565b346103f2576103ee6103dd6103d83660046103a3565b610767565b6103e56100b3565b91829182610289565b0390f35b6100b9565b34610427576104073660046100c3565b610423610412610786565b61041a6100b3565b91829182610140565b0390f35b6100b9565b3461045d576104596104486104423660046101f0565b9061079c565b6104506100b3565b91829182610230565b0390f35b6100b9565b919060408382031261048b578061047f61048892600086016101ba565b936020016101ba565b90565b6100be565b346104c1576104bd6104ac6104a6366004610462565b906107d6565b6104b46100b3565b91829182610289565b0390f35b6100b9565b600080fd5b606090565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610506575b602083101461050157565b6104d0565b91607f16916104f6565b60209181520190565b600052602060002090565b906000929180549061053f610538836104e6565b8094610510565b91600181169081600014610598575060011461055b575b505050565b6105689192939450610519565b916000925b8184106105805750500190388080610556565b6001816020929593955484860152019101929061056d565b92949550505060ff1916825215156020020190388080610556565b906105bd91610524565b90565b634e487b7160e01b600052604160045260246000fd5b906105e090610105565b810190811067ffffffffffffffff8211176105fa57604052565b6105c0565b9061061f6106189261060f6100b3565b938480926105b3565b03836105d6565b565b61062a906105ff565b90565b6106356104cb565b506106406003610621565b90565b600090565b61066591610654610643565b5061065d610803565b919091610810565b600190565b600090565b60001c90565b90565b6106846106899161066f565b610675565b90565b6106969054610678565b90565b6106a161066a565b506106ac600261068c565b90565b916106d9926106bc610643565b506106d16106c8610803565b8290849161086e565b91909161093e565b600190565b600090565b90565b90565b6106fd6106f8610702926106e3565b6106e6565b610345565b90565b61070d6106de565b5061071860126106e9565b90565b61072f61072a6107349261018e565b6106e6565b61018e565b90565b6107409061071b565b90565b61074c90610737565b90565b9061075990610743565b600052602052604060002090565b61077e6107839161077661066a565b50600061074f565b61068c565b90565b61078e6104cb565b506107996004610621565b90565b6107b9916107a8610643565b506107b1610803565b91909161093e565b600190565b906107c890610743565b600052602052604060002090565b6107fb916107f16107f6926107e961066a565b5060016107be565b61074f565b61068c565b90565b600090565b61080b6107fe565b503390565b9161081e9291600192610a3d565b565b61082990610199565b9052565b60409061085761085e949695939661084d60608401986000850190610820565b602083019061027c565b019061027c565b565b9061086b91036101c9565b90565b92919261087c8183906107d6565b908161089261088c6000196101c9565b916101c9565b0361089f575b5050509050565b816108b26108ac876101c9565b916101c9565b106108d9576108d093946108c7919392610860565b90600092610a3d565b80388080610898565b506108f9849291926000938493637dc7a0d960e11b85526004850161082d565b0390fd5b90565b61091461090f610919926108fd565b6106e6565b61018e565b90565b61092590610900565b90565b919061093c90600060208501940190610820565b565b918261095b610955610950600061091c565b610199565b91610199565b146109b8578161097c610976610971600061091c565b610199565b91610199565b1461098f5761098d92919091610b9b565b565b6109b461099c600061091c565b600091829163ec442f0560e01b835260048301610928565b0390fd5b6109dd6109c5600061091c565b6000918291634b637e8f60e11b835260048301610928565b0390fd5b60001b90565b906109f4600019916109e1565b9181191691161790565b610a12610a0d610a17926101c9565b6106e6565b6101c9565b90565b90565b90610a32610a2d610a39926109fe565b610a1a565b82546109e7565b9055565b909281610a5b610a55610a50600061091c565b610199565b91610199565b14610b295783610a7c610a76610a71600061091c565b610199565b91610199565b14610b0057610aa083610a9b610a94600186906107be565b879061074f565b610a1d565b610aaa575b505050565b919091610af5610ae3610add7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610743565b93610743565b93610aec6100b3565b91829182610289565b0390a3388080610aa5565b610b25610b0d600061091c565b6000918291634a1406b160e11b835260048301610928565b0390fd5b610b4e610b36600061091c565b600091829163e602df0560e01b835260048301610928565b0390fd5b634e487b7160e01b600052601160045260246000fd5b610b77610b7d919392936101c9565b926101c9565b8201809211610b8857565b610b52565b90610b9891016101c9565b90565b91909180610bba610bb4610baf600061091c565b610199565b91610199565b14600014610c9f57610bdf610bd883610bd3600261068c565b610b68565b6002610a1d565b5b82610bfc610bf6610bf1600061091c565b610199565b91610199565b14600014610c7257610c21610c1a83610c15600261068c565b610860565b6002610a1d565b5b919091610c6d610c5b610c557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610743565b93610743565b93610c646100b3565b91829182610289565b0390a3565b610c9a82610c94610c856000879061074f565b91610c8f8361068c565b610b8d565b90610a1d565b610c22565b610cb3610cae6000839061074f565b61068c565b80610cc6610cc0856101c9565b916101c9565b10610cef57610cd9610cea918490610860565b610ce56000849061074f565b610a1d565b610be0565b90610d0e909192600093849363391434e360e21b85526004850161082d565b0390fdfea264697066735822122013ff5e9e70f5f36f020625898ba2c6bbed6eb31a553616c2f30e7f47b10f11fa64736f6c634300081c0033a2646970667358221220ded77fdb9b9eae0edb6be683fe5a61a8b2381ecb4d64938f402bd9a484ac21e264736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.