ERC-20
Overview
Max Total Supply
1 GHOG
Holders
4
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.917865209442809714 GHOGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Ghog
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-24 */ /* * Seigniorage Reimagined ⚡️AI Driven, Forged on Sonic. Emissions optimized every 6 hours. No mercy, no emotion—only equilibrium * https://x.com/HandofGodSonic /* // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; interface IWETH is IERC20 { function deposit() external payable; function withdraw(uint256) external; } pragma solidity 0.8.19; interface IOracle { function update() external; function consult( address _token, uint256 _amountIn ) external view returns (uint144 amountOut); function twap( address _token, uint256 _amountIn ) external view returns (uint144 _amountOut); } pragma solidity 0.8.19; library SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint8 a, uint8 b) internal pure returns (uint8) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint8 a, uint8 b) internal pure returns (uint8) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint8 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint8 a, uint8 b) internal pure returns (uint8) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint8 a, uint8 b) internal pure returns (uint8) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } } pragma solidity 0.8.19; contract Operator is Context, Ownable { mapping(address => bool) private _operator; event OperatorTransferred( address indexed previousOperator, address indexed newOperator ); constructor() { _operator[_msgSender()] = true; } function operator() public view returns (bool) { return _operator[_msgSender()]; } modifier onlyOperator() { require( _operator[_msgSender()] == true, "operator: caller is not the operator" ); _; } function isOperator() public view returns (bool) { return _operator[_msgSender()]; } function setOperator(address newOperator) public onlyOwner { _operator[newOperator] = true; } function removeOperator(address oldOperator) public onlyOwner { _operator[oldOperator] = false; } } pragma solidity ^0.8.0; interface IRouter { struct Route { address from; address to; bool stable; address factory; } error ETHTransferFailed(); error Expired(); error InsufficientAmount(); error InsufficientAmountA(); error InsufficientAmountB(); error InsufficientAmountADesired(); error InsufficientAmountBDesired(); error InsufficientAmountAOptimal(); error InsufficientLiquidity(); error InsufficientOutputAmount(); error InvalidAmountInForETHDeposit(); error InvalidTokenInForETHDeposit(); error InvalidPath(); error InvalidRouteA(); error InvalidRouteB(); error OnlyWETH(); error PoolDoesNotExist(); error PoolFactoryDoesNotExist(); error SameAddresses(); error ZeroAddress(); /// @notice Address of FactoryRegistry.sol function factoryRegistry() external view returns (address); /// @notice Address of Protocol PoolFactory.sol function defaultFactory() external view returns (address); /// @notice Address of Voter.sol function voter() external view returns (address); /// @notice Interface of WETH contract used for WETH => ETH wrapping/unwrapping function weth() external view returns (IWETH); /// @dev Represents Ether. Used by zapper to determine whether to return assets as ETH/WETH. function ETHER() external view returns (address); /// @dev Struct containing information necessary to zap in and out of pools /// @param tokenA . /// @param tokenB . /// @param stable Stable or volatile pool /// @param factory factory of pool /// @param amountOutMinA Minimum amount expected from swap leg of zap via routesA /// @param amountOutMinB Minimum amount expected from swap leg of zap via routesB /// @param amountAMin Minimum amount of tokenA expected from liquidity leg of zap /// @param amountBMin Minimum amount of tokenB expected from liquidity leg of zap struct Zap { address tokenA; address tokenB; bool stable; address factory; uint256 amountOutMinA; uint256 amountOutMinB; uint256 amountAMin; uint256 amountBMin; } /// @notice Sort two tokens by which address value is less than the other /// @param tokenA Address of token to sort /// @param tokenB Address of token to sort /// @return token0 Lower address value between tokenA and tokenB /// @return token1 Higher address value between tokenA and tokenB function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1); /// @notice Calculate the address of a pool by its' factory. /// Used by all Router functions containing a `Route[]` or `_factory` argument. /// Reverts if _factory is not approved by the FactoryRegistry /// @dev Returns a randomly generated address for a nonexistent pool /// @param tokenA Address of token to query /// @param tokenB Address of token to query /// @param stable True if pool is stable, false if volatile /// @param _factory Address of factory which created the pool function poolFor( address tokenA, address tokenB, bool stable, address _factory ) external view returns (address pool); /// @notice Fetch and sort the reserves for a pool /// @param tokenA . /// @param tokenB . /// @param stable True if pool is stable, false if volatile /// @param _factory Address of PoolFactory for tokenA and tokenB /// @return reserveA Amount of reserves of the sorted token A /// @return reserveB Amount of reserves of the sorted token B function getReserves( address tokenA, address tokenB, bool stable, address _factory ) external view returns (uint256 reserveA, uint256 reserveB); /// @notice Perform chained getAmountOut calculations on any number of pools function getAmountsOut(uint256 amountIn, Route[] memory routes) external view returns (uint256[] memory amounts); // **** ADD LIQUIDITY **** /// @notice Quote the amount deposited into a Pool /// @param tokenA . /// @param tokenB . /// @param stable True if pool is stable, false if volatile /// @param _factory Address of PoolFactory for tokenA and tokenB /// @param amountADesired Amount of tokenA desired to deposit /// @param amountBDesired Amount of tokenB desired to deposit /// @return amountA Amount of tokenA to actually deposit /// @return amountB Amount of tokenB to actually deposit /// @return liquidity Amount of liquidity token returned from deposit function quoteAddLiquidity( address tokenA, address tokenB, bool stable, address _factory, uint256 amountADesired, uint256 amountBDesired ) external view returns (uint256 amountA, uint256 amountB, uint256 liquidity); /// @notice Quote the amount of liquidity removed from a Pool /// @param tokenA . /// @param tokenB . /// @param stable True if pool is stable, false if volatile /// @param _factory Address of PoolFactory for tokenA and tokenB /// @param liquidity Amount of liquidity to remove /// @return amountA Amount of tokenA received /// @return amountB Amount of tokenB received function quoteRemoveLiquidity( address tokenA, address tokenB, bool stable, address _factory, uint256 liquidity ) external view returns (uint256 amountA, uint256 amountB); /// @notice Add liquidity of two tokens to a Pool /// @param tokenA . /// @param tokenB . /// @param stable True if pool is stable, false if volatile /// @param amountADesired Amount of tokenA desired to deposit /// @param amountBDesired Amount of tokenB desired to deposit /// @param amountAMin Minimum amount of tokenA to deposit /// @param amountBMin Minimum amount of tokenB to deposit /// @param to Recipient of liquidity token /// @param deadline Deadline to receive liquidity /// @return amountA Amount of tokenA to actually deposit /// @return amountB Amount of tokenB to actually deposit /// @return liquidity Amount of liquidity token returned from deposit function addLiquidity( address tokenA, address tokenB, bool stable, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); /// @notice Add liquidity of a token and WETH (transferred as ETH) to a Pool /// @param token . /// @param stable True if pool is stable, false if volatile /// @param amountTokenDesired Amount of token desired to deposit /// @param amountTokenMin Minimum amount of token to deposit /// @param amountETHMin Minimum amount of ETH to deposit /// @param to Recipient of liquidity token /// @param deadline Deadline to add liquidity /// @return amountToken Amount of token to actually deposit /// @return amountETH Amount of tokenETH to actually deposit /// @return liquidity Amount of liquidity token returned from deposit function addLiquidityETH( address token, bool stable, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); // **** REMOVE LIQUIDITY **** /// @notice Remove liquidity of two tokens from a Pool /// @param tokenA . /// @param tokenB . /// @param stable True if pool is stable, false if volatile /// @param liquidity Amount of liquidity to remove /// @param amountAMin Minimum amount of tokenA to receive /// @param amountBMin Minimum amount of tokenB to receive /// @param to Recipient of tokens received /// @param deadline Deadline to remove liquidity /// @return amountA Amount of tokenA received /// @return amountB Amount of tokenB received function removeLiquidity( address tokenA, address tokenB, bool stable, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); /// @notice Remove liquidity of a token and WETH (returned as ETH) from a Pool /// @param token . /// @param stable True if pool is stable, false if volatile /// @param liquidity Amount of liquidity to remove /// @param amountTokenMin Minimum amount of token to receive /// @param amountETHMin Minimum amount of ETH to receive /// @param to Recipient of liquidity token /// @param deadline Deadline to receive liquidity /// @return amountToken Amount of token received /// @return amountETH Amount of ETH received function removeLiquidityETH( address token, bool stable, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); /// @notice Remove liquidity of a fee-on-transfer token and WETH (returned as ETH) from a Pool /// @param token . /// @param stable True if pool is stable, false if volatile /// @param liquidity Amount of liquidity to remove /// @param amountTokenMin Minimum amount of token to receive /// @param amountETHMin Minimum amount of ETH to receive /// @param to Recipient of liquidity token /// @param deadline Deadline to receive liquidity /// @return amountETH Amount of ETH received function removeLiquidityETHSupportingFeeOnTransferTokens( address token, bool stable, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); // **** SWAP **** /// @notice Swap one token for another /// @param amountIn Amount of token in /// @param amountOutMin Minimum amount of desired token received /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens /// @return amounts Array of amounts returned per route function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external returns (uint256[] memory amounts); /// @notice Swap ETH for a token /// @param amountOutMin Minimum amount of desired token received /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens /// @return amounts Array of amounts returned per route function swapExactETHForTokens( uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); /// @notice Swap a token for WETH (returned as ETH) /// @param amountIn Amount of token in /// @param amountOutMin Minimum amount of desired ETH /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens /// @return amounts Array of amounts returned per route function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external returns (uint256[] memory amounts); /// @notice Swap one token for another without slippage protection /// @return amounts Array of amounts to swap per route /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens function UNSAFE_swapExactTokensForTokens( uint256[] memory amounts, Route[] calldata routes, address to, uint256 deadline ) external returns (uint256[] memory); // **** SWAP (supporting fee-on-transfer tokens) **** /// @notice Swap one token for another supporting fee-on-transfer tokens /// @param amountIn Amount of token in /// @param amountOutMin Minimum amount of desired token received /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external; /// @notice Swap ETH for a token supporting fee-on-transfer tokens /// @param amountOutMin Minimum amount of desired token received /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external payable; /// @notice Swap a token for WETH (returned as ETH) supporting fee-on-transfer tokens /// @param amountIn Amount of token in /// @param amountOutMin Minimum amount of desired ETH /// @param routes Array of trade routes used in the swap /// @param to Recipient of the tokens received /// @param deadline Deadline to receive tokens function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, Route[] calldata routes, address to, uint256 deadline ) external; /// @notice Zap a token A into a pool (B, C). (A can be equal to B or C). /// Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc). /// Slippage is required for the initial swap. /// Additional slippage may be required when adding liquidity as the /// price of the token may have changed. /// @param tokenIn Token you are zapping in from (i.e. input token). /// @param amountInA Amount of input token you wish to send down routesA /// @param amountInB Amount of input token you wish to send down routesB /// @param zapInPool Contains zap struct information. See Zap struct. /// @param routesA Route used to convert input token to tokenA /// @param routesB Route used to convert input token to tokenB /// @param to Address you wish to mint liquidity to. /// @param stake Auto-stake liquidity in corresponding gauge. /// @return liquidity Amount of LP tokens created from zapping in. function zapIn( address tokenIn, uint256 amountInA, uint256 amountInB, Zap calldata zapInPool, Route[] calldata routesA, Route[] calldata routesB, address to, bool stake ) external payable returns (uint256 liquidity); /// @notice Zap out a pool (B, C) into A. /// Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc). /// Slippage is required for the removal of liquidity. /// Additional slippage may be required on the swap as the /// price of the token may have changed. /// @param tokenOut Token you are zapping out to (i.e. output token). /// @param liquidity Amount of liquidity you wish to remove. /// @param zapOutPool Contains zap struct information. See Zap struct. /// @param routesA Route used to convert tokenA into output token. /// @param routesB Route used to convert tokenB into output token. function zapOut( address tokenOut, uint256 liquidity, Zap calldata zapOutPool, Route[] calldata routesA, Route[] calldata routesB ) external; /// @notice Used to generate params required for zapping in. /// Zap in => remove liquidity then swap. /// Apply slippage to expected swap values to account for changes in reserves in between. /// @dev Output token refers to the token you want to zap in from. /// @param tokenA . /// @param tokenB . /// @param stable . /// @param _factory . /// @param amountInA Amount of input token you wish to send down routesA /// @param amountInB Amount of input token you wish to send down routesB /// @param routesA Route used to convert input token to tokenA /// @param routesB Route used to convert input token to tokenB /// @return amountOutMinA Minimum output expected from swapping input token to tokenA. /// @return amountOutMinB Minimum output expected from swapping input token to tokenB. /// @return amountAMin Minimum amount of tokenA expected from depositing liquidity. /// @return amountBMin Minimum amount of tokenB expected from depositing liquidity. function generateZapInParams( address tokenA, address tokenB, bool stable, address _factory, uint256 amountInA, uint256 amountInB, Route[] calldata routesA, Route[] calldata routesB ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin); /// @notice Used to generate params required for zapping out. /// Zap out => swap then add liquidity. /// Apply slippage to expected liquidity values to account for changes in reserves in between. /// @dev Output token refers to the token you want to zap out of. /// @param tokenA . /// @param tokenB . /// @param stable . /// @param _factory . /// @param liquidity Amount of liquidity being zapped out of into a given output token. /// @param routesA Route used to convert tokenA into output token. /// @param routesB Route used to convert tokenB into output token. /// @return amountOutMinA Minimum output expected from swapping tokenA into output token. /// @return amountOutMinB Minimum output expected from swapping tokenB into output token. /// @return amountAMin Minimum amount of tokenA expected from withdrawing liquidity. /// @return amountBMin Minimum amount of tokenB expected from withdrawing liquidity. function generateZapOutParams( address tokenA, address tokenB, bool stable, address _factory, uint256 liquidity, Route[] calldata routesA, Route[] calldata routesB ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin); /// @notice Used by zapper to determine appropriate ratio of A to B to deposit liquidity. Assumes stable pool. /// @dev Returns stable liquidity ratio of B to (A + B). /// E.g. if ratio is 0.4, it means there is more of A than there is of B. /// Therefore you should deposit more of token A than B. /// @param tokenA tokenA of stable pool you are zapping into. /// @param tokenB tokenB of stable pool you are zapping into. /// @param factory Factory that created stable pool. /// @return ratio Ratio of token0 to token1 required to deposit into zap. function quoteStableLiquidityRatio( address tokenA, address tokenB, address factory ) external view returns (uint256 ratio); } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } pragma solidity 0.8.19; interface IBasisAsset { function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; } contract Ghog is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; using SafeERC20 for IERC20; uint256 public constant LIQUIDITY_ALLOCATION = 1 ether; // plus one IRouter public constant ROUTER = IRouter(0x1D368773735ee1E678950B7A97bcA2CafB330CDc); address public constant FACTORY = 0x2dA25E7446A70D7be65fd4c053948BEcAA6374c8; address public constant WETH = 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38; address public HOG; bool public swap = true; constructor(address _HOG) ERC20("GHOG", "GHOG") { HOG = _HOG; _mint(_msgSender(), LIQUIDITY_ALLOCATION); taxManager = _msgSender(); } function setTaxManager(address _taxManager) public onlyTaxManager { taxManager = _taxManager; } function _burnHOG(uint256 taxAmount) internal { IRouter.Route[] memory routes = new IRouter.Route[](2); routes[0] = IRouter.Route({ from: address(this), to: WETH, stable: false, factory: FACTORY }); routes[1] = IRouter.Route({ from: WETH, to: HOG, stable: true, factory: FACTORY }); IERC20(address(this)).approve(address(ROUTER), taxAmount); ROUTER.swapExactTokensForTokensSupportingFeeOnTransferTokens( taxAmount, 0, routes, address(this), block.timestamp.add(60) ); uint256 amountToBurn = IERC20(HOG).balanceOf(address(this)); IBasisAsset(HOG).burn(amountToBurn); } function mint(address account, uint256 amount) external onlyOperator { _mint(account, amount); } address public taxManager; address public oracle; // Should the taxes be calculated using the tax tiers bool public autoCalculateTax; mapping(address => bool) public isLP; // Current tax rate uint256 public taxRate; // Tax Tiers uint256[] public taxTiersTwaps = [ 0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.7e17, 1e18, 1.05e18, 1.10e18 ]; uint256[] public taxTiersRates = [ 1000, 800, 700, 500, 250, 100, 0, 0, 0, 0 ]; // Sender addresses excluded from Tax mapping(address => bool) public excludedAddresses; modifier onlyTaxManager() { require(taxManager == _msgSender(), "Caller is not the tax office"); _; } /* ============= Taxation ============= */ function getTaxTiersTwapsCount() public view returns (uint256 count) { return taxTiersTwaps.length; } function getTaxTiersRatesCount() public view returns (uint256 count) { return taxTiersRates.length; } function isAddressExcluded(address _address) public view returns (bool) { return excludedAddresses[_address]; } function setTaxTiersTwap( uint8 _index, uint256 _value ) public onlyTaxManager returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require( _index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers" ); if (_index > 0) { require(_value > taxTiersTwaps[_index - 1]); } if (_index < getTaxTiersTwapsCount().sub(1)) { require(_value < taxTiersTwaps[_index + 1]); } taxTiersTwaps[_index] = _value; return true; } function setTaxTiersRate( uint8 _index, uint256 _value ) public onlyTaxManager returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require( _index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers" ); taxTiersRates[_index] = _value; return true; } function _getHogPrice() internal view returns (uint256 _hogPrice) { try IOracle(oracle).twap(address(HOG), 1e18) returns ( uint144 _price ) { return uint256(_price); } catch { revert("Hog: failed to fetch HOG price from Oracle"); } } function _updateTaxRate(uint256 _hogPrice) internal returns (uint256) { for ( uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId ) { if (_hogPrice >= taxTiersTwaps[tierId]) { require( taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%" ); taxRate = taxTiersRates[tierId]; return taxTiersRates[tierId]; } } return 0; } function setLP(address _LP, bool _isLP) public onlyTaxManager { isLP[_LP] = _isLP; } function setSwap(bool _swap) public onlyTaxManager { swap = _swap; } function enableAutoCalculateTax() public onlyTaxManager { autoCalculateTax = true; } function disableAutoCalculateTax() public onlyTaxManager { autoCalculateTax = false; } function setOracle(address _oracle) public onlyTaxManager { require(_oracle != address(0), "oracle address cannot be 0 address"); oracle = _oracle; } function setTaxRate(uint256 _taxRate) public onlyTaxManager { require(!autoCalculateTax, "auto calculate tax cannot be enabled"); require(_taxRate <= 2000, "tax equal or bigger to 20%"); taxRate = _taxRate; } function excludeAddress( address _address ) public onlyTaxManager returns (bool) { require(!excludedAddresses[_address], "address can't be excluded"); excludedAddresses[_address] = true; return true; } function includeAddress( address _address ) public onlyTaxManager returns (bool) { require(excludedAddresses[_address], "address can't be included"); excludedAddresses[_address] = false; return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transferGHOG(sender, recipient, amount); _approve( sender, _msgSender(), allowance(sender, _msgSender()).sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { address sender = _msgSender(); _transferGHOG(sender, recipient, amount); return true; } function _transferWithTax( address sender, address recipient, uint256 amount ) internal { uint256 taxAmount = amount.mul(taxRate).div(10000); uint256 amountAfterTax = amount.sub(taxAmount); if (swap) { _transfer(sender, address(this), taxAmount); _burnHOG(taxAmount); } else { _burn(sender, taxAmount); } _transfer(sender, recipient, amountAfterTax); } function _transferGHOG( address sender, address recipient, uint256 amount ) internal { uint256 currentTaxRate = 0; if (autoCalculateTax) { uint256 currentHogPrice = _getHogPrice(); currentTaxRate = _updateTaxRate(currentHogPrice); } if (!autoCalculateTax) { currentTaxRate = taxRate; } if ( (isLP[recipient]) && currentTaxRate != 0 && !excludedAddresses[sender] && !excludedAddresses[recipient] ) { _transferWithTax(sender, recipient, amount); } else { _transfer(sender, recipient, amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_HOG","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOG","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oldOperator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"bool","name":"_isLP","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swap","type":"bool"}],"name":"setSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxManager","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6007805460ff60a01b1916600160a01b1790556101c0604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d7621dc5821000061014052670de0b6b3a764000061016052670e92596fd629000061018052670f43fc2c04ee00006101a052620000a190600c90600a62000326565b5060408051610140810182526103e8815261032060208201526102bc918101919091526101f4606082015260fa6080820152606460a0820152600060c0820181905260e0820181905261010082018190526101208201526200010890600d90600a62000381565b503480156200011657600080fd5b506040516200278a3803806200278a8339810160408190526200013991620003dc565b60408051808201825260048082526347484f4760e01b6020808401829052845180860190955291845290830152906003620001758382620004b2565b506004620001848282620004b2565b505050620001a16200019b6200020560201b60201c565b62000209565b336000818152600660205260409020805460ff19166001179055600780546001600160a01b0384166001600160a01b0319909116179055620001ec90670de0b6b3a76400006200025b565b50600880546001600160a01b03191633179055620005a6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ca91906200057e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b8280548282559060005260206000209081019282156200036f579160200282015b828111156200036f57825182906001600160401b031690559160200191906001019062000347565b506200037d929150620003c5565b5090565b8280548282559060005260206000209081019282156200036f579160200282015b828111156200036f578251829061ffff16905591602001919060010190620003a2565b5b808211156200037d5760008155600101620003c6565b600060208284031215620003ef57600080fd5b81516001600160a01b03811681146200040757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200043957607f821691505b6020821081036200045a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032157600081815260208120601f850160051c81016020861015620004895750805b601f850160051c820191505b81811015620004aa5782815560010162000495565b505050505050565b81516001600160401b03811115620004ce57620004ce6200040e565b620004e681620004df845462000424565b8462000460565b602080601f8311600181146200051e5760008415620005055750858301515b600019600386901b1c1916600185901b178555620004aa565b600085815260208120601f198616915b828110156200054f578886015182559484019460019091019084016200052e565b50858210156200056e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005a057634e487b7160e01b600052601160045260246000fd5b92915050565b6121d480620005b66000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806379cc679011610182578063a9059cbb116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a95351461066a578063f2fde38b14610672578063f9428f3814610685578063ff87fc7c1461069457600080fd5b8063cf011b2614610608578063dd62ed3e1461062b578063ebca1bd91461063e57600080fd5b8063a9059cbb1461058e578063ac8a584a146105a1578063ad5c4648146105b4578063b3ab15fb146105cf578063b87c5a4a146105e2578063c6d69a30146105f557600080fd5b80638da5cb5b1161013b5780638da5cb5b146105345780639092bfe41461054557806393995d4b1461055857806395d89b411461056b578063a457c2d714610573578063a6431bba1461058657600080fd5b806379cc6790146104b05780637adbf973146104c35780637dc0d1d0146104d65780637df0f767146104e95780638119c0651461050c5780638d3cc8181461052057600080fd5b806340c10f19116102265780635c29908d116101df5780635c29908d1461044857806365bbacd91461045b57806366206ce91461046357806370a0823114610476578063715018a61461049f578063771a3a1d146104a757600080fd5b806340c10f19146103e457806342966c68146103f757806342c6b4f11461040a5780634456eda21461041d5780634d23773014610435578063570ca7351461041d57600080fd5b806328d679381161027857806328d679381461034e5780632dd3100014610361578063313ce5671461039457806332fe7b26146103a35780633758e6ce146103be57806339509351146103d157600080fd5b806306fdde03146102c0578063095e3913146102de578063095ea7b3146102f357806314f89c981461031657806318160ddd1461032957806323b872dd1461033b575b600080fd5b6102c861069c565b6040516102d59190611d28565b60405180910390f35b6102f16102ec366004611d8d565b61072e565b005b610306610301366004611da8565b610783565b60405190151581526020016102d5565b6102f1610324366004611de0565b61079d565b6002545b6040519081526020016102d5565b610306610349366004611dfd565b6107e5565b6102f161035c366004611e39565b610834565b61037c732da25e7446a70d7be65fd4c053948becaa6374c881565b6040516001600160a01b0390911681526020016102d5565b604051601281526020016102d5565b61037c731d368773735ee1e678950b7a97bca2cafb330cdc81565b6103066103cc366004611d8d565b610889565b6103066103df366004611da8565b61094c565b6102f16103f2366004611da8565b610969565b6102f1610405366004611e70565b6109e7565b61032d610418366004611e70565b6109f4565b3360009081526006602052604090205460ff16610306565b60085461037c906001600160a01b031681565b61032d610456366004611e70565b610a15565b6102f1610a25565b610306610471366004611e89565b610a5e565b61032d610484366004611d8d565b6001600160a01b031660009081526020819052604090205490565b6102f1610b6e565b61032d600b5481565b6102f16104be366004611da8565b610b82565b6102f16104d1366004611d8d565b610b97565b60095461037c906001600160a01b031681565b6103066104f7366004611d8d565b600a6020526000908152604090205460ff1681565b60075461030690600160a01b900460ff1681565b60095461030690600160a01b900460ff1681565b6005546001600160a01b031661037c565b60075461037c906001600160a01b031681565b610306610566366004611d8d565b610c44565b6102c8610cfe565b610306610581366004611da8565b610d0d565b600c5461032d565b61030661059c366004611da8565b610d93565b6102f16105af366004611d8d565b610da1565b61037c73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b6102f16105dd366004611d8d565b610dca565b6103066105f0366004611e89565b610df6565b6102f1610603366004611e70565b610e5e565b610306610616366004611d8d565b600e6020526000908152604090205460ff1681565b61032d610639366004611ead565b610f45565b61030661064c366004611d8d565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5461032d565b6102f1610680366004611d8d565b610f70565b61032d670de0b6b3a764000081565b6102f1610fe6565b6060600380546106ab90611ee0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790611ee0565b80156107245780601f106106f957610100808354040283529160200191610724565b820191906000526020600020905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b6008546001600160a01b031633146107615760405162461bcd60e51b815260040161075890611f1a565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600033610791818585611025565b60019150505b92915050565b6008546001600160a01b031633146107c75760405162461bcd60e51b815260040161075890611f1a565b60078054911515600160a01b0260ff60a01b19909216919091179055565b60006107f284848461114a565b61082a8433610825856040518060600160405280602881526020016121776028913961081e8a33610f45565b9190611225565b611025565b5060019392505050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6008546000906001600160a01b031633146108b65760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b0382166000908152600e602052604090205460ff161561091f5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610758565b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60003361079181858561095f8383610f45565b6108259190611f67565b3360009081526006602052604090205460ff1615156001146109d95760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201526330ba37b960e11b6064820152608401610758565b6109e38282611251565b5050565b6109f13382611310565b50565b600c8181548110610a0457600080fd5b600091825260209091200154905081565b600d8181548110610a0457600080fd5b6008546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161075890611f1a565b6009805460ff60a01b19169055565b6008546000906001600160a01b03163314610a8b5760405162461bcd60e51b815260040161075890611f1a565b600c548360ff1610610aaf5760405162461bcd60e51b815260040161075890611f7a565b60ff831615610aee57600c610ac5600185611fc4565b60ff1681548110610ad857610ad8611fdd565b90600052602060002001548211610aee57600080fd5b610b026001610afc600c5490565b9061143a565b8360ff161015610b4257600c610b19846001611ff3565b60ff1681548110610b2c57610b2c611fdd565b90600052602060002001548210610b4257600080fd5b81600c8460ff1681548110610b5957610b59611fdd565b60009182526020909120015550600192915050565b610b7661144d565b610b8060006114a7565b565b610b8d8233836114f9565b6109e38282611310565b6008546001600160a01b03163314610bc15760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b038116610c225760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610758565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610c715760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b0382166000908152600e602052604090205460ff16610cd95760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610758565b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b6060600480546106ab90611ee0565b60003381610d1b8286610f45565b905083811015610d7b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610758565b610d888286868403611025565b506001949350505050565b60003361079181858561114a565b610da961144d565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610dd261144d565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6008546000906001600160a01b03163314610e235760405162461bcd60e51b815260040161075890611f1a565b600d548360ff1610610e475760405162461bcd60e51b815260040161075890611f7a565b81600d8460ff1681548110610b5957610b59611fdd565b6008546001600160a01b03163314610e885760405162461bcd60e51b815260040161075890611f1a565b600954600160a01b900460ff1615610eee5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e61604482015263189b195960e21b6064820152608401610758565b6107d0811115610f405760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610758565b600b55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f7861144d565b6001600160a01b038116610fdd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610758565b6109f1816114a7565b6008546001600160a01b031633146110105760405162461bcd60e51b815260040161075890611f1a565b6009805460ff60a01b1916600160a01b179055565b6001600160a01b0383166110875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610758565b6001600160a01b0382166110e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610758565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600954600090600160a01b900460ff161561117857600061116961156d565b905061117481611655565b9150505b600954600160a01b900460ff1661118e5750600b545b6001600160a01b0383166000908152600a602052604090205460ff1680156111b557508015155b80156111da57506001600160a01b0384166000908152600e602052604090205460ff16155b80156111ff57506001600160a01b0383166000908152600e602052604090205460ff16155b156112145761120f84848461176a565b61121f565b61121f8484846117e5565b50505050565b600081848411156112495760405162461bcd60e51b81526004016107589190611d28565b505050900390565b6001600160a01b0382166112a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610758565b80600260008282546112b99190611f67565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610758565b6001600160a01b038216600090815260208190526040902054818110156113e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610758565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161113d565b6000611446828461200c565b9392505050565b6005546001600160a01b03163314610b805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115058484610f45565b9050600019811461121f57818110156115605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610758565b61121f8484848403611025565b600954600754604051630d01142560e31b81526001600160a01b039182166004820152670de0b6b3a764000060248201526000929190911690636808a12890604401602060405180830381865afa9250505080156115e8575060408051601f3d908101601f191682019092526115e59181019061201f565b60015b6116475760405162461bcd60e51b815260206004820152602a60248201527f486f673a206661696c656420746f20666574636820484f472070726963652066604482015269726f6d204f7261636c6560b01b6064820152608401610758565b6001600160901b0316919050565b60008061166f6001611666600c5490565b60ff1690611989565b90505b600c8160ff168154811061168857611688611fdd565b9060005260206000200154831061175a57612710600d8260ff16815481106116b2576116b2611fdd565b90600052602060002001541061170a5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610758565b600d8160ff168154811061172057611720611fdd565b9060005260206000200154600b81905550600d8160ff168154811061174757611747611fdd565b9060005260206000200154915050919050565b61176381612048565b9050611672565b600061178d612710611787600b54856119cb90919063ffffffff16565b906119d7565b9050600061179b838361143a565b600754909150600160a01b900460ff16156117c9576117bb8530846117e5565b6117c4826119e3565b6117d3565b6117d38583611310565b6117de8585836117e5565b5050505050565b6001600160a01b0383166118495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610758565b6001600160a01b0382166118ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610758565b6001600160a01b038316600090815260208190526040902054818110156119235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610758565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361121f565b600061144683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cdb565b60006114468284612065565b6000611446828461207c565b60408051600280825260608201909252600091816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816119fb5750506040805160808101825230815273039e2fb66102314ce7b64ce5ce3e5183bc94ad3860208201526000918101829052732da25e7446a70d7be65fd4c053948becaa6374c86060820152825192935091839190611a8c57611a8c611fdd565b6020908102919091018101919091526040805160808101825273039e2fb66102314ce7b64ce5ce3e5183bc94ad3881526007546001600160a01b0316928101929092526001908201819052732da25e7446a70d7be65fd4c053948becaa6374c8606083015282518391908110611b0457611b04611fdd565b602090810291909101015260405163095ea7b360e01b8152731d368773735ee1e678950b7a97bca2cafb330cdc600482015260248101839052309063095ea7b3906044016020604051808303816000875af1158015611b67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8b919061209e565b50731d368773735ee1e678950b7a97bca2cafb330cdc6388cd821e8360008430611bb642603c611d1c565b6040518663ffffffff1660e01b8152600401611bd69594939291906120bb565b600060405180830381600087803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b50506007546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611c53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c77919061215d565b600754604051630852cd8d60e31b8152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b158015611cbe57600080fd5b505af1158015611cd2573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff1611158290611d065760405162461bcd60e51b81526004016107589190611d28565b506000611d138486611fc4565b95945050505050565b60006114468284611f67565b600060208083528351808285015260005b81811015611d5557858101830151858201604001528201611d39565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461094757600080fd5b600060208284031215611d9f57600080fd5b61144682611d76565b60008060408385031215611dbb57600080fd5b611dc483611d76565b946020939093013593505050565b80151581146109f157600080fd5b600060208284031215611df257600080fd5b813561144681611dd2565b600080600060608486031215611e1257600080fd5b611e1b84611d76565b9250611e2960208501611d76565b9150604084013590509250925092565b60008060408385031215611e4c57600080fd5b611e5583611d76565b91506020830135611e6581611dd2565b809150509250929050565b600060208284031215611e8257600080fd5b5035919050565b60008060408385031215611e9c57600080fd5b823560ff81168114611dc457600080fd5b60008060408385031215611ec057600080fd5b611ec983611d76565b9150611ed760208401611d76565b90509250929050565b600181811c90821680611ef457607f821691505b602082108103611f1457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079757610797611f51565b6020808252602a908201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666040820152692074617820746965727360b01b606082015260800190565b60ff828116828216039081111561079757610797611f51565b634e487b7160e01b600052603260045260246000fd5b60ff818116838216019081111561079757610797611f51565b8181038181111561079757610797611f51565b60006020828403121561203157600080fd5b81516001600160901b038116811461144657600080fd5b600060ff82168061205b5761205b611f51565b6000190192915050565b808202811582820484141761079757610797611f51565b60008261209957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156120b057600080fd5b815161144681611dd2565b600060a0820187835260208781850152604060a08186015282885180855260c087019150838a01945060005b8181101561213157855180516001600160a01b03908116855286820151811687860152858201511515868601526060918201511690840152948401946080909201916001016120e7565b50506001600160a01b0388166060870152935061214d92505050565b8260808301529695505050505050565b60006020828403121561216f57600080fd5b505191905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122018a76ff511b9423f13db965df7c283ad9c38fec33ca9a29c287a4129e1e4e0ec64736f6c6343000813003300000000000000000000000035d7927bce23cd3baf5cba489c31d69c286bf7a0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806379cc679011610182578063a9059cbb116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a95351461066a578063f2fde38b14610672578063f9428f3814610685578063ff87fc7c1461069457600080fd5b8063cf011b2614610608578063dd62ed3e1461062b578063ebca1bd91461063e57600080fd5b8063a9059cbb1461058e578063ac8a584a146105a1578063ad5c4648146105b4578063b3ab15fb146105cf578063b87c5a4a146105e2578063c6d69a30146105f557600080fd5b80638da5cb5b1161013b5780638da5cb5b146105345780639092bfe41461054557806393995d4b1461055857806395d89b411461056b578063a457c2d714610573578063a6431bba1461058657600080fd5b806379cc6790146104b05780637adbf973146104c35780637dc0d1d0146104d65780637df0f767146104e95780638119c0651461050c5780638d3cc8181461052057600080fd5b806340c10f19116102265780635c29908d116101df5780635c29908d1461044857806365bbacd91461045b57806366206ce91461046357806370a0823114610476578063715018a61461049f578063771a3a1d146104a757600080fd5b806340c10f19146103e457806342966c68146103f757806342c6b4f11461040a5780634456eda21461041d5780634d23773014610435578063570ca7351461041d57600080fd5b806328d679381161027857806328d679381461034e5780632dd3100014610361578063313ce5671461039457806332fe7b26146103a35780633758e6ce146103be57806339509351146103d157600080fd5b806306fdde03146102c0578063095e3913146102de578063095ea7b3146102f357806314f89c981461031657806318160ddd1461032957806323b872dd1461033b575b600080fd5b6102c861069c565b6040516102d59190611d28565b60405180910390f35b6102f16102ec366004611d8d565b61072e565b005b610306610301366004611da8565b610783565b60405190151581526020016102d5565b6102f1610324366004611de0565b61079d565b6002545b6040519081526020016102d5565b610306610349366004611dfd565b6107e5565b6102f161035c366004611e39565b610834565b61037c732da25e7446a70d7be65fd4c053948becaa6374c881565b6040516001600160a01b0390911681526020016102d5565b604051601281526020016102d5565b61037c731d368773735ee1e678950b7a97bca2cafb330cdc81565b6103066103cc366004611d8d565b610889565b6103066103df366004611da8565b61094c565b6102f16103f2366004611da8565b610969565b6102f1610405366004611e70565b6109e7565b61032d610418366004611e70565b6109f4565b3360009081526006602052604090205460ff16610306565b60085461037c906001600160a01b031681565b61032d610456366004611e70565b610a15565b6102f1610a25565b610306610471366004611e89565b610a5e565b61032d610484366004611d8d565b6001600160a01b031660009081526020819052604090205490565b6102f1610b6e565b61032d600b5481565b6102f16104be366004611da8565b610b82565b6102f16104d1366004611d8d565b610b97565b60095461037c906001600160a01b031681565b6103066104f7366004611d8d565b600a6020526000908152604090205460ff1681565b60075461030690600160a01b900460ff1681565b60095461030690600160a01b900460ff1681565b6005546001600160a01b031661037c565b60075461037c906001600160a01b031681565b610306610566366004611d8d565b610c44565b6102c8610cfe565b610306610581366004611da8565b610d0d565b600c5461032d565b61030661059c366004611da8565b610d93565b6102f16105af366004611d8d565b610da1565b61037c73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b6102f16105dd366004611d8d565b610dca565b6103066105f0366004611e89565b610df6565b6102f1610603366004611e70565b610e5e565b610306610616366004611d8d565b600e6020526000908152604090205460ff1681565b61032d610639366004611ead565b610f45565b61030661064c366004611d8d565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5461032d565b6102f1610680366004611d8d565b610f70565b61032d670de0b6b3a764000081565b6102f1610fe6565b6060600380546106ab90611ee0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790611ee0565b80156107245780601f106106f957610100808354040283529160200191610724565b820191906000526020600020905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b6008546001600160a01b031633146107615760405162461bcd60e51b815260040161075890611f1a565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600033610791818585611025565b60019150505b92915050565b6008546001600160a01b031633146107c75760405162461bcd60e51b815260040161075890611f1a565b60078054911515600160a01b0260ff60a01b19909216919091179055565b60006107f284848461114a565b61082a8433610825856040518060600160405280602881526020016121776028913961081e8a33610f45565b9190611225565b611025565b5060019392505050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6008546000906001600160a01b031633146108b65760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b0382166000908152600e602052604090205460ff161561091f5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610758565b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60003361079181858561095f8383610f45565b6108259190611f67565b3360009081526006602052604090205460ff1615156001146109d95760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201526330ba37b960e11b6064820152608401610758565b6109e38282611251565b5050565b6109f13382611310565b50565b600c8181548110610a0457600080fd5b600091825260209091200154905081565b600d8181548110610a0457600080fd5b6008546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161075890611f1a565b6009805460ff60a01b19169055565b6008546000906001600160a01b03163314610a8b5760405162461bcd60e51b815260040161075890611f1a565b600c548360ff1610610aaf5760405162461bcd60e51b815260040161075890611f7a565b60ff831615610aee57600c610ac5600185611fc4565b60ff1681548110610ad857610ad8611fdd565b90600052602060002001548211610aee57600080fd5b610b026001610afc600c5490565b9061143a565b8360ff161015610b4257600c610b19846001611ff3565b60ff1681548110610b2c57610b2c611fdd565b90600052602060002001548210610b4257600080fd5b81600c8460ff1681548110610b5957610b59611fdd565b60009182526020909120015550600192915050565b610b7661144d565b610b8060006114a7565b565b610b8d8233836114f9565b6109e38282611310565b6008546001600160a01b03163314610bc15760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b038116610c225760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610758565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610c715760405162461bcd60e51b815260040161075890611f1a565b6001600160a01b0382166000908152600e602052604090205460ff16610cd95760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610758565b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b6060600480546106ab90611ee0565b60003381610d1b8286610f45565b905083811015610d7b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610758565b610d888286868403611025565b506001949350505050565b60003361079181858561114a565b610da961144d565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610dd261144d565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6008546000906001600160a01b03163314610e235760405162461bcd60e51b815260040161075890611f1a565b600d548360ff1610610e475760405162461bcd60e51b815260040161075890611f7a565b81600d8460ff1681548110610b5957610b59611fdd565b6008546001600160a01b03163314610e885760405162461bcd60e51b815260040161075890611f1a565b600954600160a01b900460ff1615610eee5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e61604482015263189b195960e21b6064820152608401610758565b6107d0811115610f405760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610758565b600b55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f7861144d565b6001600160a01b038116610fdd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610758565b6109f1816114a7565b6008546001600160a01b031633146110105760405162461bcd60e51b815260040161075890611f1a565b6009805460ff60a01b1916600160a01b179055565b6001600160a01b0383166110875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610758565b6001600160a01b0382166110e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610758565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600954600090600160a01b900460ff161561117857600061116961156d565b905061117481611655565b9150505b600954600160a01b900460ff1661118e5750600b545b6001600160a01b0383166000908152600a602052604090205460ff1680156111b557508015155b80156111da57506001600160a01b0384166000908152600e602052604090205460ff16155b80156111ff57506001600160a01b0383166000908152600e602052604090205460ff16155b156112145761120f84848461176a565b61121f565b61121f8484846117e5565b50505050565b600081848411156112495760405162461bcd60e51b81526004016107589190611d28565b505050900390565b6001600160a01b0382166112a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610758565b80600260008282546112b99190611f67565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610758565b6001600160a01b038216600090815260208190526040902054818110156113e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610758565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161113d565b6000611446828461200c565b9392505050565b6005546001600160a01b03163314610b805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115058484610f45565b9050600019811461121f57818110156115605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610758565b61121f8484848403611025565b600954600754604051630d01142560e31b81526001600160a01b039182166004820152670de0b6b3a764000060248201526000929190911690636808a12890604401602060405180830381865afa9250505080156115e8575060408051601f3d908101601f191682019092526115e59181019061201f565b60015b6116475760405162461bcd60e51b815260206004820152602a60248201527f486f673a206661696c656420746f20666574636820484f472070726963652066604482015269726f6d204f7261636c6560b01b6064820152608401610758565b6001600160901b0316919050565b60008061166f6001611666600c5490565b60ff1690611989565b90505b600c8160ff168154811061168857611688611fdd565b9060005260206000200154831061175a57612710600d8260ff16815481106116b2576116b2611fdd565b90600052602060002001541061170a5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610758565b600d8160ff168154811061172057611720611fdd565b9060005260206000200154600b81905550600d8160ff168154811061174757611747611fdd565b9060005260206000200154915050919050565b61176381612048565b9050611672565b600061178d612710611787600b54856119cb90919063ffffffff16565b906119d7565b9050600061179b838361143a565b600754909150600160a01b900460ff16156117c9576117bb8530846117e5565b6117c4826119e3565b6117d3565b6117d38583611310565b6117de8585836117e5565b5050505050565b6001600160a01b0383166118495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610758565b6001600160a01b0382166118ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610758565b6001600160a01b038316600090815260208190526040902054818110156119235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610758565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361121f565b600061144683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cdb565b60006114468284612065565b6000611446828461207c565b60408051600280825260608201909252600091816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816119fb5750506040805160808101825230815273039e2fb66102314ce7b64ce5ce3e5183bc94ad3860208201526000918101829052732da25e7446a70d7be65fd4c053948becaa6374c86060820152825192935091839190611a8c57611a8c611fdd565b6020908102919091018101919091526040805160808101825273039e2fb66102314ce7b64ce5ce3e5183bc94ad3881526007546001600160a01b0316928101929092526001908201819052732da25e7446a70d7be65fd4c053948becaa6374c8606083015282518391908110611b0457611b04611fdd565b602090810291909101015260405163095ea7b360e01b8152731d368773735ee1e678950b7a97bca2cafb330cdc600482015260248101839052309063095ea7b3906044016020604051808303816000875af1158015611b67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8b919061209e565b50731d368773735ee1e678950b7a97bca2cafb330cdc6388cd821e8360008430611bb642603c611d1c565b6040518663ffffffff1660e01b8152600401611bd69594939291906120bb565b600060405180830381600087803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b50506007546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611c53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c77919061215d565b600754604051630852cd8d60e31b8152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b158015611cbe57600080fd5b505af1158015611cd2573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff1611158290611d065760405162461bcd60e51b81526004016107589190611d28565b506000611d138486611fc4565b95945050505050565b60006114468284611f67565b600060208083528351808285015260005b81811015611d5557858101830151858201604001528201611d39565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461094757600080fd5b600060208284031215611d9f57600080fd5b61144682611d76565b60008060408385031215611dbb57600080fd5b611dc483611d76565b946020939093013593505050565b80151581146109f157600080fd5b600060208284031215611df257600080fd5b813561144681611dd2565b600080600060608486031215611e1257600080fd5b611e1b84611d76565b9250611e2960208501611d76565b9150604084013590509250925092565b60008060408385031215611e4c57600080fd5b611e5583611d76565b91506020830135611e6581611dd2565b809150509250929050565b600060208284031215611e8257600080fd5b5035919050565b60008060408385031215611e9c57600080fd5b823560ff81168114611dc457600080fd5b60008060408385031215611ec057600080fd5b611ec983611d76565b9150611ed760208401611d76565b90509250929050565b600181811c90821680611ef457607f821691505b602082108103611f1457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079757610797611f51565b6020808252602a908201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666040820152692074617820746965727360b01b606082015260800190565b60ff828116828216039081111561079757610797611f51565b634e487b7160e01b600052603260045260246000fd5b60ff818116838216019081111561079757610797611f51565b8181038181111561079757610797611f51565b60006020828403121561203157600080fd5b81516001600160901b038116811461144657600080fd5b600060ff82168061205b5761205b611f51565b6000190192915050565b808202811582820484141761079757610797611f51565b60008261209957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156120b057600080fd5b815161144681611dd2565b600060a0820187835260208781850152604060a08186015282885180855260c087019150838a01945060005b8181101561213157855180516001600160a01b03908116855286820151811687860152858201511515868601526060918201511690840152948401946080909201916001016120e7565b50506001600160a01b0388166060870152935061214d92505050565b8260808301529695505050505050565b60006020828403121561216f57600080fd5b505191905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122018a76ff511b9423f13db965df7c283ad9c38fec33ca9a29c287a4129e1e4e0ec64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000035d7927bce23cd3baf5cba489c31d69c286bf7a0
-----Decoded View---------------
Arg [0] : _HOG (address): 0x35D7927bCE23Cd3bAf5cBa489c31D69C286bF7a0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000035d7927bce23cd3baf5cba489c31d69c286bf7a0
Deployed Bytecode Sourcemap
74379:8307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62142:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75102:109;;;;;;:::i;:::-;;:::i;:::-;;64502:201;;;;;;:::i;:::-;;:::i;:::-;;;1360:14:1;;1353:22;1335:41;;1323:2;1308:18;64502:201:0;1195:187:1;79518:82:0;;;;;;:::i;:::-;;:::i;63271:108::-;63359:12;;63271:108;;;1902:25:1;;;1890:2;1875:18;63271:108:0;1756:177:1;80760:450:0;;;;;;:::i;:::-;;:::i;79412:98::-;;;;;;:::i;:::-;;:::i;74700:85::-;;74743:42;74700:85;;;;;-1:-1:-1;;;;;2864:32:1;;;2846:51;;2834:2;2819:18;74700:85:0;2700:203:1;63113:93:0;;;63196:2;3050:36:1;;3038:2;3023:18;63113:93:0;2908:184:1;74600:93:0;;74650:42;74600:93;;80250:247;;;;;;:::i;:::-;;:::i;65953:238::-;;;;;;:::i;:::-;;:::i;76066:110::-;;;;;;:::i;:::-;;:::i;73633:91::-;;;;;;:::i;:::-;;:::i;76459:195::-;;;;;;:::i;:::-;;:::i;31020:98::-;862:10;31063:4;31087:23;;;:9;:23;;;;;;;;31020:98;;76184:25;;;;;-1:-1:-1;;;;;76184:25:0;;;76661:173;;;;;;:::i;:::-;;:::i;79714:100::-;;;:::i;77505:608::-;;;;;;:::i;:::-;;:::i;63442:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;63543:18:0;63516:7;63543:18;;;;;;;;;;;;63442:127;2811:103;;;:::i;76410:22::-;;;;;;74043:164;;;;;;:::i;:::-;;:::i;79822:172::-;;;;;;:::i;:::-;;:::i;76216:21::-;;;;;-1:-1:-1;;;;;76216:21:0;;;76340:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;74897:23;;;;;-1:-1:-1;;;74897:23:0;;;;;;76305:28;;;;;-1:-1:-1;;;76305:28:0;;;;;;2170:87;2243:6;;-1:-1:-1;;;;;2243:6:0;2170:87;;74872:18;;;;;-1:-1:-1;;;;;74872:18:0;;;80505:247;;;;;;:::i;:::-;;:::i;62361:104::-;;;:::i;66694:436::-;;;;;;:::i;:::-;;:::i;77126:115::-;77213:13;:20;77126:115;;81218:238;;;;;;:::i;:::-;;:::i;31241:111::-;;;;;;:::i;:::-;;:::i;74792:73::-;;74823:42;74792:73;;31126:107;;;;;;:::i;:::-;;:::i;78121:387::-;;;;;;:::i;:::-;;:::i;80002:240::-;;;;;;:::i;:::-;;:::i;76886:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64031:151;;;;;;:::i;:::-;;:::i;77372:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;77462:27:0;77438:4;77462:27;;;:17;:27;;;;;;;;;77372:125;77249:115;77336:13;:20;77249:115;;3069:201;;;;;;:::i;:::-;;:::i;74527:54::-;;74574:7;74527:54;;79608:98;;;:::i;62142:100::-;62196:13;62229:5;62222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62142:100;:::o;75102:109::-;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;;;;;;;;;75179:10:::1;:24:::0;;-1:-1:-1;;;;;;75179:24:0::1;-1:-1:-1::0;;;;;75179:24:0;;;::::1;::::0;;;::::1;::::0;;75102:109::o;64502:201::-;64585:4;862:10;64641:32;862:10;64657:7;64666:6;64641:8;:32::i;:::-;64691:4;64684:11;;;64502:201;;;;;:::o;79518:82::-;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;79580:4:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;79580:12:0::1;-1:-1:-1::0;;;;79580:12:0;;::::1;::::0;;;::::1;::::0;;79518:82::o;80760:450::-;80892:4;80909:40;80923:6;80931:9;80942:6;80909:13;:40::i;:::-;80960:218;80983:6;862:10;81031:136;81085:6;81031:136;;;;;;;;;;;;;;;;;:31;81041:6;862:10;64031:151;:::i;81031:31::-;:35;:136;:35;:136::i;:::-;80960:8;:218::i;:::-;-1:-1:-1;81198:4:0;80760:450;;;;;:::o;79412:98::-;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;79485:9:0;;;::::1;;::::0;;;:4:::1;:9;::::0;;;;:17;;-1:-1:-1;;79485:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79412:98::o;80250:247::-;76989:10;;80339:4;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80365:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;80364:28;80356:66;;;::::0;-1:-1:-1;;;80356:66:0;;5057:2:1;80356:66:0::1;::::0;::::1;5039:21:1::0;5096:2;5076:18;;;5069:30;5135:27;5115:18;;;5108:55;5180:18;;80356:66:0::1;4855:349:1::0;80356:66:0::1;-1:-1:-1::0;;;;;;80433:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;80433:34:0::1;80463:4;80433:34:::0;;::::1;::::0;;;77059:1:::1;80250:247:::0;;;:::o;65953:238::-;66041:4;862:10;66097:64;862:10;66113:7;66150:10;66122:25;862:10;66113:7;66122:9;:25::i;:::-;:38;;;;:::i;76066:110::-;862:10;30897:23;;;;:9;:23;;;;;;;;:31;;:23;:31;30875:117;;;;-1:-1:-1;;;30875:117:0;;5673:2:1;30875:117:0;;;5655:21:1;5712:2;5692:18;;;5685:30;5751:34;5731:18;;;5724:62;-1:-1:-1;;;5802:18:1;;;5795:34;5846:19;;30875:117:0;5471:400:1;30875:117:0;76146:22:::1;76152:7;76161:6;76146:5;:22::i;:::-;76066:110:::0;;:::o;73633:91::-;73689:27;862:10;73709:6;73689:5;:27::i;:::-;73633:91;:::o;76459:195::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76459:195:0;:::o;76661:173::-;;;;;;;;;;;;79714:100;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;79782:16:::1;:24:::0;;-1:-1:-1;;;;79782:24:0::1;::::0;;79714:100::o;77505:608::-;76989:10;;77616:4;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;77213:13;:20;77719:6:::1;:32;;;77697:124;;;;-1:-1:-1::0;;;77697:124:0::1;;;;;;;:::i;:::-;77836:10;::::0;::::1;::::0;77832:86:::1;;77880:13;77894:10;77903:1;77894:6:::0;:10:::1;:::i;:::-;77880:25;;;;;;;;;;:::i;:::-;;;;;;;;;77871:6;:34;77863:43;;;::::0;::::1;;77941:30;77969:1;77941:23;77213:13:::0;:20;;77126:115;77941:23:::1;:27:::0;::::1;:30::i;:::-;77932:6;:39;;;77928:115;;;78005:13;78019:10;:6:::0;78028:1:::1;78019:10;:::i;:::-;78005:25;;;;;;;;;;:::i;:::-;;;;;;;;;77996:6;:34;77988:43;;;::::0;::::1;;78077:6;78053:13;78067:6;78053:21;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;78101:4:0::1;77505:608:::0;;;;:::o;2811:103::-;2056:13;:11;:13::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;74043:164::-;74120:46;74136:7;862:10;74159:6;74120:15;:46::i;:::-;74177:22;74183:7;74192:6;74177:5;:22::i;79822:172::-;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;79899:21:0;::::1;79891:68;;;::::0;-1:-1:-1;;;79891:68:0;;7288:2:1;79891:68:0::1;::::0;::::1;7270:21:1::0;7327:2;7307:18;;;7300:30;7366:34;7346:18;;;7339:62;-1:-1:-1;;;7417:18:1;;;7410:32;7459:19;;79891:68:0::1;7086:398:1::0;79891:68:0::1;79970:6;:16:::0;;-1:-1:-1;;;;;;79970:16:0::1;-1:-1:-1::0;;;;;79970:16:0;;;::::1;::::0;;;::::1;::::0;;79822:172::o;80505:247::-;76989:10;;80594:4;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80619:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;80611:65;;;::::0;-1:-1:-1;;;80611:65:0;;7691:2:1;80611:65:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;7769:27;7749:18;;;7742:55;7814:18;;80611:65:0::1;7489:349:1::0;80611:65:0::1;-1:-1:-1::0;;;;;;80687:27:0::1;80717:5;80687:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;80687:35:0::1;::::0;;-1:-1:-1;;80505:247:0:o;62361:104::-;62417:13;62450:7;62443:14;;;;;:::i;66694:436::-;66787:4;862:10;66787:4;66870:25;862:10;66887:7;66870:9;:25::i;:::-;66843:52;;66934:15;66914:16;:35;;66906:85;;;;-1:-1:-1;;;66906:85:0;;8045:2:1;66906:85:0;;;8027:21:1;8084:2;8064:18;;;8057:30;8123:34;8103:18;;;8096:62;-1:-1:-1;;;8174:18:1;;;8167:35;8219:19;;66906:85:0;7843:401:1;66906:85:0;67027:60;67036:5;67043:7;67071:15;67052:16;:34;67027:8;:60::i;:::-;-1:-1:-1;67118:4:0;;66694:436;-1:-1:-1;;;;66694:436:0:o;81218:238::-;81329:4;862:10;81386:40;862:10;81408:9;81419:6;81386:13;:40::i;31241:111::-;2056:13;:11;:13::i;:::-;-1:-1:-1;;;;;31314:22:0::1;31339:5;31314:22:::0;;;:9:::1;:22;::::0;;;;:30;;-1:-1:-1;;31314:30:0::1;::::0;;31241:111::o;31126:107::-;2056:13;:11;:13::i;:::-;-1:-1:-1;;;;;31196:22:0::1;;::::0;;;:9:::1;:22;::::0;;;;:29;;-1:-1:-1;;31196:29:0::1;31221:4;31196:29;::::0;;31126:107::o;78121:387::-;76989:10;;78232:4;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;77336:13;:20;78335:6:::1;:32;;;78313:124;;;;-1:-1:-1::0;;;78313:124:0::1;;;;;;;:::i;:::-;78472:6;78448:13;78462:6;78448:21;;;;;;;;;;:::i;80002:240::-:0;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;80082:16:::1;::::0;-1:-1:-1;;;80082:16:0;::::1;;;80081:17;80073:66;;;::::0;-1:-1:-1;;;80073:66:0;;8451:2:1;80073:66:0::1;::::0;::::1;8433:21:1::0;8490:2;8470:18;;;8463:30;8529:34;8509:18;;;8502:62;-1:-1:-1;;;8580:18:1;;;8573:34;8624:19;;80073:66:0::1;8249:400:1::0;80073:66:0::1;80170:4;80158:8;:16;;80150:55;;;::::0;-1:-1:-1;;;80150:55:0;;8856:2:1;80150:55:0::1;::::0;::::1;8838:21:1::0;8895:2;8875:18;;;8868:30;8934:28;8914:18;;;8907:56;8980:18;;80150:55:0::1;8654:350:1::0;80150:55:0::1;80216:7;:18:::0;80002:240::o;64031:151::-;-1:-1:-1;;;;;64147:18:0;;;64120:7;64147:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;64031:151::o;3069:201::-;2056:13;:11;:13::i;:::-;-1:-1:-1;;;;;3158:22:0;::::1;3150:73;;;::::0;-1:-1:-1;;;3150:73:0;;9211:2:1;3150:73:0::1;::::0;::::1;9193:21:1::0;9250:2;9230:18;;;9223:30;9289:34;9269:18;;;9262:62;-1:-1:-1;;;9340:18:1;;;9333:36;9386:19;;3150:73:0::1;9009:402:1::0;3150:73:0::1;3234:28;3253:8;3234:18;:28::i;79608:98::-:0;76989:10;;-1:-1:-1;;;;;76989:10:0;862;76989:26;76981:67;;;;-1:-1:-1;;;76981:67:0;;;;;;;:::i;:::-;79675:16:::1;:23:::0;;-1:-1:-1;;;;79675:23:0::1;-1:-1:-1::0;;;79675:23:0::1;::::0;;79608:98::o;70687:346::-;-1:-1:-1;;;;;70789:19:0;;70781:68;;;;-1:-1:-1;;;70781:68:0;;9618:2:1;70781:68:0;;;9600:21:1;9657:2;9637:18;;;9630:30;9696:34;9676:18;;;9669:62;-1:-1:-1;;;9747:18:1;;;9740:34;9791:19;;70781:68:0;9416:400:1;70781:68:0;-1:-1:-1;;;;;70868:21:0;;70860:68;;;;-1:-1:-1;;;70860:68:0;;10023:2:1;70860:68:0;;;10005:21:1;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:1;;;10145:32;10194:19;;70860:68:0;9821:398:1;70860:68:0;-1:-1:-1;;;;;70941:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;70993:32;;1902:25:1;;;70993:32:0;;1875:18:1;70993:32:0;;;;;;;;70687:346;;;:::o;81954:729::-;82123:16;;82082:22;;-1:-1:-1;;;82123:16:0;;;;82119:152;;;82156:23;82182:14;:12;:14::i;:::-;82156:40;;82228:31;82243:15;82228:14;:31::i;:::-;82211:48;;82141:130;82119:152;82286:16;;-1:-1:-1;;;82286:16:0;;;;82281:74;;-1:-1:-1;82336:7:0;;82281:74;-1:-1:-1;;;;;82384:15:0;;;;;;:4;:15;;;;;;;;82383:53;;;;-1:-1:-1;82417:19:0;;;82383:53;:96;;;;-1:-1:-1;;;;;;82454:25:0;;;;;;:17;:25;;;;;;;;82453:26;82383:96;:142;;;;-1:-1:-1;;;;;;82497:28:0;;;;;;:17;:28;;;;;;;;82496:29;82383:142;82365:311;;;82552:43;82569:6;82577:9;82588:6;82552:16;:43::i;:::-;82365:311;;;82628:36;82638:6;82646:9;82657:6;82628:9;:36::i;:::-;82071:612;81954:729;;;:::o;23364:206::-;23450:7;23511:12;23503:6;;;;23495:29;;;;-1:-1:-1;;;23495:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;23546:5:0;;;23364:206::o;68693:548::-;-1:-1:-1;;;;;68777:21:0;;68769:65;;;;-1:-1:-1;;;68769:65:0;;10426:2:1;68769:65:0;;;10408:21:1;10465:2;10445:18;;;10438:30;10504:33;10484:18;;;10477:61;10555:18;;68769:65:0;10224:355:1;68769:65:0;68925:6;68909:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;69080:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;69135:37;1902:25:1;;;69135:37:0;;1875:18:1;69135:37:0;;;;;;;76066:110;;:::o;69574:675::-;-1:-1:-1;;;;;69658:21:0;;69650:67;;;;-1:-1:-1;;;69650:67:0;;10786:2:1;69650:67:0;;;10768:21:1;10825:2;10805:18;;;10798:30;10864:34;10844:18;;;10837:62;-1:-1:-1;;;10915:18:1;;;10908:31;10956:19;;69650:67:0;10584:397:1;69650:67:0;-1:-1:-1;;;;;69817:18:0;;69792:22;69817:18;;;;;;;;;;;69854:24;;;;69846:71;;;;-1:-1:-1;;;69846:71:0;;11188:2:1;69846:71:0;;;11170:21:1;11227:2;11207:18;;;11200:30;11266:34;11246:18;;;11239:62;-1:-1:-1;;;11317:18:1;;;11310:32;11359:19;;69846:71:0;10986:398:1;69846:71:0;-1:-1:-1;;;;;69953:18:0;;:9;:18;;;;;;;;;;;69974:23;;;69953:44;;70092:12;:22;;;;;;;70143:37;1902:25:1;;;69953:9:0;;:18;70143:37;;1875:18:1;70143:37:0;1756:177:1;21466:98:0;21524:7;21551:5;21555:1;21551;:5;:::i;:::-;21544:12;21466:98;-1:-1:-1;;;21466:98:0:o;2335:132::-;2243:6;;-1:-1:-1;;;;;2243:6:0;862:10;2399:23;2391:68;;;;-1:-1:-1;;;2391:68:0;;11724:2:1;2391:68:0;;;11706:21:1;;;11743:18;;;11736:30;11802:34;11782:18;;;11775:62;11854:18;;2391:68:0;11522:356:1;3430:191:0;3523:6;;;-1:-1:-1;;;;;3540:17:0;;;-1:-1:-1;;;;;;3540:17:0;;;;;;;3573:40;;3523:6;;;3540:17;3523:6;;3573:40;;3504:16;;3573:40;3493:128;3430:191;:::o;71324:419::-;71425:24;71452:25;71462:5;71469:7;71452:9;:25::i;:::-;71425:52;;-1:-1:-1;;71492:16:0;:37;71488:248;;71574:6;71554:16;:26;;71546:68;;;;-1:-1:-1;;;71546:68:0;;12085:2:1;71546:68:0;;;12067:21:1;12124:2;12104:18;;;12097:30;12163:31;12143:18;;;12136:59;12212:18;;71546:68:0;11883:353:1;71546:68:0;71658:51;71667:5;71674:7;71702:6;71683:16;:25;71658:8;:51::i;78516:313::-;78605:6;;78626:3;;78597:40;;-1:-1:-1;;;78597:40:0;;-1:-1:-1;;;;;78626:3:0;;;78597:40;;;12441:51:1;78632:4:0;12508:18:1;;;12501:34;78563:17:0;;78605:6;;;;;78597:20;;12414:18:1;;78597:40:0;;;;;;;;;;;;;;;;;;-1:-1:-1;78597:40:0;;;;;;;;-1:-1:-1;;78597:40:0;;;;;;;;;;;;:::i;:::-;;;78593:229;;78758:52;;-1:-1:-1;;;78758:52:0;;13062:2:1;78758:52:0;;;13044:21:1;13101:2;13081:18;;;13074:30;13140:34;13120:18;;;13113:62;-1:-1:-1;;;13191:18:1;;;13184:40;13241:19;;78758:52:0;12860:406:1;78593:229:0;-1:-1:-1;;;;;78709:15:0;;78516:313;-1:-1:-1;78516:313:0:o;78837:567::-;78898:7;78937:12;78952:37;78987:1;78958:23;77213:13;:20;;77126:115;78958:23;78952:34;;;;:37::i;:::-;78937:52;;78918:460;79082:13;79096:6;79082:21;;;;;;;;;;:::i;:::-;;;;;;;;;79069:9;:34;79065:302;;79178:5;79154:13;79168:6;79154:21;;;;;;;;;;:::i;:::-;;;;;;;;;:29;79124:130;;;;-1:-1:-1;;;79124:130:0;;13473:2:1;79124:130:0;;;13455:21:1;13512:2;13492:18;;;13485:30;13551:29;13531:18;;;13524:57;13598:18;;79124:130:0;13271:351:1;79124:130:0;79283:13;79297:6;79283:21;;;;;;;;;;:::i;:::-;;;;;;;;;79273:7;:31;;;;79330:13;79344:6;79330:21;;;;;;;;;;:::i;:::-;;;;;;;;;79323:28;;;78837:567;;;:::o;79065:302::-;79030:8;;;:::i;:::-;;;78918:460;;81464:482;81595:17;81615:30;81639:5;81615:19;81626:7;;81615:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;81595:50;-1:-1:-1;81656:22:0;81681:21;:6;81595:50;81681:10;:21::i;:::-;81717:4;;81656:46;;-1:-1:-1;;;;81717:4:0;;;;81713:171;;;81738:43;81748:6;81764:4;81771:9;81738;:43::i;:::-;81796:19;81805:9;81796:8;:19::i;:::-;81713:171;;;81848:24;81854:6;81862:9;81848:5;:24::i;:::-;81894:44;81904:6;81912:9;81923:14;81894:9;:44::i;:::-;81584:362;;81464:482;;;:::o;67600:806::-;-1:-1:-1;;;;;67697:18:0;;67689:68;;;;-1:-1:-1;;;67689:68:0;;14012:2:1;67689:68:0;;;13994:21:1;14051:2;14031:18;;;14024:30;14090:34;14070:18;;;14063:62;-1:-1:-1;;;14141:18:1;;;14134:35;14186:19;;67689:68:0;13810:401:1;67689:68:0;-1:-1:-1;;;;;67776:16:0;;67768:64;;;;-1:-1:-1;;;67768:64:0;;14418:2:1;67768:64:0;;;14400:21:1;14457:2;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;-1:-1:-1;;;14547:18:1;;;14540:33;14590:19;;67768:64:0;14216:399:1;67768:64:0;-1:-1:-1;;;;;67918:15:0;;67896:19;67918:15;;;;;;;;;;;67952:21;;;;67944:72;;;;-1:-1:-1;;;67944:72:0;;14822:2:1;67944:72:0;;;14804:21:1;14861:2;14841:18;;;14834:30;14900:34;14880:18;;;14873:62;-1:-1:-1;;;14951:18:1;;;14944:36;14997:19;;67944:72:0;14620:402:1;67944:72:0;-1:-1:-1;;;;;68052:15:0;;;:9;:15;;;;;;;;;;;68070:20;;;68052:38;;68270:13;;;;;;;;;;:23;;;;;;68322:26;;1902:25:1;;;68270:13:0;;68322:26;;1875:18:1;68322:26:0;;;;;;;68361:37;69574:675;26374:130;26428:5;26453:43;26457:1;26460;26453:43;;;;;;;;;;;;;;;;;:3;:43::i;21823:98::-;21881:7;21908:5;21912:1;21908;:5;:::i;22222:98::-;22280:7;22307:5;22311:1;22307;:5;:::i;75219:839::-;75308:22;;;75328:1;75308:22;;;;;;;;;75276:29;;75308:22;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75308:22:0;;-1:-1:-1;;75308:22:0;;;;;;;;-1:-1:-1;;75355:142:0;;;;;;;;75398:4;75355:142;;74823:42;75355:142;;;;-1:-1:-1;75355:142:0;;;;;;74743:42;75355:142;;;;75343:9;;;;-1:-1:-1;75355:142:0;75343:9;;-1:-1:-1;75343:9:0;;;;:::i;:::-;;;;;;;;;;;:154;;;;75522:131;;;;;;;;74823:42;75522:131;;75580:3;;-1:-1:-1;;;;;75580:3:0;75522:131;;;;;;;75580:3;75522:131;;;;;;74743:42;75522:131;;;;75510:9;;:6;;75580:3;75510:9;;;;;;:::i;:::-;;;;;;;;;;:143;75666:57;;-1:-1:-1;;;75666:57:0;;74650:42;75666:57;;;12441:51:1;12508:18;;;12501:34;;;75681:4:0;;75666:29;;12414:18:1;;75666:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;74650:42:0;75734:60;75809:9;75833:1;75849:6;75878:4;75898:23;:15;75918:2;75898:19;:23::i;:::-;75734:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75975:3:0;;75968:36;;-1:-1:-1;;;75968:36:0;;75998:4;75968:36;;;2846:51:1;75945:20:0;;-1:-1:-1;;;;;;75975:3:0;;;;-1:-1:-1;75968:21:0;;2819:18:1;;75968:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76027:3;;76015:35;;-1:-1:-1;;;76015:35:0;;;;;1902:25:1;;;75945:59:0;;-1:-1:-1;;;;;;76027:3:0;;76015:21;;1875:18:1;;76015:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75265:793;;75219:839;:::o;26807:218::-;26923:5;26954:1;26949:6;;:1;:6;;;;26957:12;26941:29;;;;;-1:-1:-1;;;26941:29:0;;;;;;;;:::i;:::-;-1:-1:-1;26981:7:0;26991:5;26995:1;26991;:5;:::i;:::-;26981:15;26807:218;-1:-1:-1;;;;;26807:218:0:o;21085:98::-;21143:7;21170:5;21174:1;21170;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;745:186;804:6;857:2;845:9;836:7;832:23;828:32;825:52;;;873:1;870;863:12;825:52;896:29;915:9;896:29;:::i;936:254::-;1004:6;1012;1065:2;1053:9;1044:7;1040:23;1036:32;1033:52;;;1081:1;1078;1071:12;1033:52;1104:29;1123:9;1104:29;:::i;:::-;1094:39;1180:2;1165:18;;;;1152:32;;-1:-1:-1;;;936:254:1:o;1387:118::-;1473:5;1466:13;1459:21;1452:5;1449:32;1439:60;;1495:1;1492;1485:12;1510:241;1566:6;1619:2;1607:9;1598:7;1594:23;1590:32;1587:52;;;1635:1;1632;1625:12;1587:52;1674:9;1661:23;1693:28;1715:5;1693:28;:::i;1938:328::-;2015:6;2023;2031;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;2123:29;2142:9;2123:29;:::i;:::-;2113:39;;2171:38;2205:2;2194:9;2190:18;2171:38;:::i;:::-;2161:48;;2256:2;2245:9;2241:18;2228:32;2218:42;;1938:328;;;;;:::o;2271:315::-;2336:6;2344;2397:2;2385:9;2376:7;2372:23;2368:32;2365:52;;;2413:1;2410;2403:12;2365:52;2436:29;2455:9;2436:29;:::i;:::-;2426:39;;2515:2;2504:9;2500:18;2487:32;2528:28;2550:5;2528:28;:::i;:::-;2575:5;2565:15;;;2271:315;;;;;:::o;3321:180::-;3380:6;3433:2;3421:9;3412:7;3408:23;3404:32;3401:52;;;3449:1;3446;3439:12;3401:52;-1:-1:-1;3472:23:1;;3321:180;-1:-1:-1;3321:180:1:o;3506:337::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3688:9;3675:23;3738:4;3731:5;3727:16;3720:5;3717:27;3707:55;;3758:1;3755;3748:12;3848:260;3916:6;3924;3977:2;3965:9;3956:7;3952:23;3948:32;3945:52;;;3993:1;3990;3983:12;3945:52;4016:29;4035:9;4016:29;:::i;:::-;4006:39;;4064:38;4098:2;4087:9;4083:18;4064:38;:::i;:::-;4054:48;;3848:260;;;;;:::o;4113:380::-;4192:1;4188:12;;;;4235;;;4256:61;;4310:4;4302:6;4298:17;4288:27;;4256:61;4363:2;4355:6;4352:14;4332:18;4329:38;4326:161;;4409:10;4404:3;4400:20;4397:1;4390:31;4444:4;4441:1;4434:15;4472:4;4469:1;4462:15;4326:161;;4113:380;;;:::o;4498:352::-;4700:2;4682:21;;;4739:2;4719:18;;;4712:30;4778;4773:2;4758:18;;4751:58;4841:2;4826:18;;4498:352::o;5209:127::-;5270:10;5265:3;5261:20;5258:1;5251:31;5301:4;5298:1;5291:15;5325:4;5322:1;5315:15;5341:125;5406:9;;;5427:10;;;5424:36;;;5440:18;;:::i;6234:406::-;6436:2;6418:21;;;6475:2;6455:18;;;6448:30;6514:34;6509:2;6494:18;;6487:62;-1:-1:-1;;;6580:2:1;6565:18;;6558:40;6630:3;6615:19;;6234:406::o;6645:151::-;6735:4;6728:12;;;6714;;;6710:31;;6753:14;;6750:40;;;6770:18;;:::i;6801:127::-;6862:10;6857:3;6853:20;6850:1;6843:31;6893:4;6890:1;6883:15;6917:4;6914:1;6907:15;6933:148;7021:4;7000:12;;;7014;;;6996:31;;7039:13;;7036:39;;;7055:18;;:::i;11389:128::-;11456:9;;;11477:11;;;11474:37;;;11491:18;;:::i;12546:309::-;12616:6;12669:2;12657:9;12648:7;12644:23;12640:32;12637:52;;;12685:1;12682;12675:12;12637:52;12717:9;12711:16;-1:-1:-1;;;;;12760:5:1;12756:50;12749:5;12746:61;12736:89;;12821:1;12818;12811:12;13627:178;13664:3;13708:4;13701:5;13697:16;13732:7;13722:41;;13743:18;;:::i;:::-;-1:-1:-1;;13779:20:1;;13627:178;-1:-1:-1;;13627:178:1:o;15027:168::-;15100:9;;;15131;;15148:15;;;15142:22;;15128:37;15118:71;;15169:18;;:::i;15200:217::-;15240:1;15266;15256:132;;15310:10;15305:3;15301:20;15298:1;15291:31;15345:4;15342:1;15335:15;15373:4;15370:1;15363:15;15256:132;-1:-1:-1;15402:9:1;;15200:217::o;15833:245::-;15900:6;15953:2;15941:9;15932:7;15928:23;15924:32;15921:52;;;15969:1;15966;15959:12;15921:52;16001:9;15995:16;16020:28;16042:5;16020:28;:::i;16083:1315::-;16391:4;16439:3;16428:9;16424:19;16470:6;16459:9;16452:25;16496:2;16534:6;16529:2;16518:9;16514:18;16507:34;16560:2;16598:3;16593:2;16582:9;16578:18;16571:31;16622:6;16657;16651:13;16688:6;16680;16673:22;16726:3;16715:9;16711:19;16704:26;;16765:2;16757:6;16753:15;16739:29;;16786:1;16796:474;16810:6;16807:1;16804:13;16796:474;;;16869:13;;16953:9;;-1:-1:-1;;;;;16949:18:1;;;16937:31;;17012:11;;;17006:18;17002:27;;16988:12;;;16981:49;17084:11;;;17078:18;17071:26;17064:34;17050:12;;;17043:56;17122:4;17170:11;;;17164:18;17160:27;17146:12;;;17139:49;17245:15;;;;17217:4;17208:14;;;;16922:1;16825:9;16796:474;;;-1:-1:-1;;;;;;;2657:31:1;;17341:4;17326:20;;2645:44;17287:3;-1:-1:-1;17299:48:1;;-1:-1:-1;;;2591:104:1;17299:48;17385:6;17378:4;17367:9;17363:20;17356:36;16083:1315;;;;;;;;:::o;17403:184::-;17473:6;17526:2;17514:9;17505:7;17501:23;17497:32;17494:52;;;17542:1;17539;17532:12;17494:52;-1:-1:-1;17565:16:1;;17403:184;-1:-1:-1;17403:184:1:o
Swarm Source
ipfs://18a76ff511b9423f13db965df7c283ad9c38fec33ca9a29c287a4129e1e4e0ec
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.