Token
BUSD Token (BUSD)
ERC-20
Overview
Max Total Supply
31,000,000 BUSD
Holders
5
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
90 BUSDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BEP20Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-26 */ /** *Submitted for verification at testnet.bscscan.com on 2023-12-21 */ //SPDX-License-Identifier: UNLICENSED 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () { } function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 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"); _; } /** * @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 BEP20Token is Context, IBEP20, 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; constructor() { _name = "BUSD Token"; _symbol = "BUSD"; _decimals = 18; _totalSupply = 31000000000000000000000000; _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 Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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(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 _mint(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); } /** * @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); } /** * @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")); } }
[{"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":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600a815269212aa9a2102a37b5b2b760b11b6020820152600690620000839082620001c8565b50604080518082019091526004815263109554d160e21b6020820152600590620000ae9082620001c8565b506004805460ff191660121790556a19a4815e0ad0c67f00000060038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001159190815260200190565b60405180910390a362000294565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014e57607f821691505b6020821081036200016f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c357600081815260208120601f850160051c810160208610156200019e5750805b601f850160051c820191505b81811015620001bf57828155600101620001aa565b5050505b505050565b81516001600160401b03811115620001e457620001e462000123565b620001fc81620001f5845462000139565b8462000175565b602080601f8311600181146200023457600084156200021b5750858301515b600019600386901b1c1916600185901b178555620001bf565b600085815260208120601f198616915b82811015620002655788860151825594840194600190910190840162000244565b5085821015620002845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610f1380620002a46000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063893d20e8116100ad578063a9059cbb11610071578063a9059cbb1461027a578063b09f12661461028d578063d28d885214610295578063dd62ed3e1461029d578063f2fde38b146102d657600080fd5b8063893d20e8146102165780638da5cb5b1461023b57806395d89b411461024c578063a0712d6814610254578063a457c2d71461026757600080fd5b806332424aa3116100f457806332424aa3146101b057806339509351146101bd57806342966c68146101d057806370a08231146101e3578063715018a61461020c57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102e9565b6040516101469190610c6b565b60405180910390f35b61016261015d366004610cd0565b61037b565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610cfa565b610392565b60045460ff165b60405160ff9091168152602001610146565b60045461019e9060ff1681565b6101626101cb366004610cd0565b6103fb565b6101626101de366004610d36565b610431565b6101766101f1366004610d4f565b6001600160a01b031660009081526001602052604090205490565b610214610445565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6000546001600160a01b0316610223565b6101396104c2565b610162610262366004610d36565b6104d1565b610162610275366004610cd0565b61050b565b610162610288366004610cd0565b61055a565b610139610567565b6101396105f5565b6101766102ab366004610d6a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102146102e4366004610d4f565b610602565b6060600680546102f890610d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461032490610d9d565b80156103715780601f1061034657610100808354040283529160200191610371565b820191906000526020600020905b81548152906001019060200180831161035457829003601f168201915b5050505050905090565b6000610388338484610638565b5060015b92915050565b600061039f84848461075d565b6103f184336103ec85604051806060016040528060288152602001610e49602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108e3565b610638565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103889185906103ec908661091d565b600061043d3383610983565b506001919050565b6000546001600160a01b031633146104785760405162461bcd60e51b815260040161046f90610dd7565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600580546102f890610d9d565b600080546001600160a01b031633146104fc5760405162461bcd60e51b815260040161046f90610dd7565b61043d3383610a8f565b919050565b600061038833846103ec85604051806060016040528060258152602001610e97602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108e3565b600061038833848461075d565b6005805461057490610d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546105a090610d9d565b80156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b505050505081565b6006805461057490610d9d565b6000546001600160a01b0316331461062c5760405162461bcd60e51b815260040161046f90610dd7565b61063581610b69565b50565b6001600160a01b03831661069a5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046f565b6001600160a01b0382166106fb5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107c15760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046f565b6001600160a01b0382166108235760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046f565b61086081604051806060016040528060268152602001610e71602691396001600160a01b03861660009081526001602052604090205491906108e3565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461088f908261091d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107509085815260200190565b600081848411156109075760405162461bcd60e51b815260040161046f9190610c6b565b5060006109148486610e22565b95945050505050565b60008061092a8385610e35565b90508381101561097c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161046f565b9392505050565b6001600160a01b0382166109e35760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161046f565b610a2081604051806060016040528060228152602001610ebc602291396001600160a01b03851660009081526001602052604090205491906108e3565b6001600160a01b038316600090815260016020526040902055600354610a469082610c29565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610ae55760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161046f565b600354610af2908261091d565b6003556001600160a01b038216600090815260016020526040902054610b18908261091d565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a839085815260200190565b6001600160a01b038116610bce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061097c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506108e3565b600060208083528351808285015260005b81811015610c9857858101830151858201604001528201610c7c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461050657600080fd5b60008060408385031215610ce357600080fd5b610cec83610cb9565b946020939093013593505050565b600080600060608486031215610d0f57600080fd5b610d1884610cb9565b9250610d2660208501610cb9565b9150604084013590509250925092565b600060208284031215610d4857600080fd5b5035919050565b600060208284031215610d6157600080fd5b61097c82610cb9565b60008060408385031215610d7d57600080fd5b610d8683610cb9565b9150610d9460208401610cb9565b90509250929050565b600181811c90821680610db157607f821691505b602082108103610dd157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038c5761038c610e0c565b8082018082111561038c5761038c610e0c56fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a2646970667358221220909f31ce9a1a1e234cc4677a3bc275fc58e3c9a487fc10f033ecd7537b72baeb64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063893d20e8116100ad578063a9059cbb11610071578063a9059cbb1461027a578063b09f12661461028d578063d28d885214610295578063dd62ed3e1461029d578063f2fde38b146102d657600080fd5b8063893d20e8146102165780638da5cb5b1461023b57806395d89b411461024c578063a0712d6814610254578063a457c2d71461026757600080fd5b806332424aa3116100f457806332424aa3146101b057806339509351146101bd57806342966c68146101d057806370a08231146101e3578063715018a61461020c57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102e9565b6040516101469190610c6b565b60405180910390f35b61016261015d366004610cd0565b61037b565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610cfa565b610392565b60045460ff165b60405160ff9091168152602001610146565b60045461019e9060ff1681565b6101626101cb366004610cd0565b6103fb565b6101626101de366004610d36565b610431565b6101766101f1366004610d4f565b6001600160a01b031660009081526001602052604090205490565b610214610445565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6000546001600160a01b0316610223565b6101396104c2565b610162610262366004610d36565b6104d1565b610162610275366004610cd0565b61050b565b610162610288366004610cd0565b61055a565b610139610567565b6101396105f5565b6101766102ab366004610d6a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102146102e4366004610d4f565b610602565b6060600680546102f890610d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461032490610d9d565b80156103715780601f1061034657610100808354040283529160200191610371565b820191906000526020600020905b81548152906001019060200180831161035457829003601f168201915b5050505050905090565b6000610388338484610638565b5060015b92915050565b600061039f84848461075d565b6103f184336103ec85604051806060016040528060288152602001610e49602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108e3565b610638565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103889185906103ec908661091d565b600061043d3383610983565b506001919050565b6000546001600160a01b031633146104785760405162461bcd60e51b815260040161046f90610dd7565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600580546102f890610d9d565b600080546001600160a01b031633146104fc5760405162461bcd60e51b815260040161046f90610dd7565b61043d3383610a8f565b919050565b600061038833846103ec85604051806060016040528060258152602001610e97602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108e3565b600061038833848461075d565b6005805461057490610d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546105a090610d9d565b80156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b505050505081565b6006805461057490610d9d565b6000546001600160a01b0316331461062c5760405162461bcd60e51b815260040161046f90610dd7565b61063581610b69565b50565b6001600160a01b03831661069a5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046f565b6001600160a01b0382166106fb5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107c15760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046f565b6001600160a01b0382166108235760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046f565b61086081604051806060016040528060268152602001610e71602691396001600160a01b03861660009081526001602052604090205491906108e3565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461088f908261091d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107509085815260200190565b600081848411156109075760405162461bcd60e51b815260040161046f9190610c6b565b5060006109148486610e22565b95945050505050565b60008061092a8385610e35565b90508381101561097c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161046f565b9392505050565b6001600160a01b0382166109e35760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161046f565b610a2081604051806060016040528060228152602001610ebc602291396001600160a01b03851660009081526001602052604090205491906108e3565b6001600160a01b038316600090815260016020526040902055600354610a469082610c29565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610ae55760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161046f565b600354610af2908261091d565b6003556001600160a01b038216600090815260016020526040902054610b18908261091d565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a839085815260200190565b6001600160a01b038116610bce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061097c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506108e3565b600060208083528351808285015260005b81811015610c9857858101830151858201604001528201610c7c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461050657600080fd5b60008060408385031215610ce357600080fd5b610cec83610cb9565b946020939093013593505050565b600080600060608486031215610d0f57600080fd5b610d1884610cb9565b9250610d2660208501610cb9565b9150604084013590509250925092565b600060208284031215610d4857600080fd5b5035919050565b600060208284031215610d6157600080fd5b61097c82610cb9565b60008060408385031215610d7d57600080fd5b610d8683610cb9565b9150610d9460208401610cb9565b90509250929050565b600181811c90821680610db157607f821691505b602082108103610dd157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561038c5761038c610e0c565b8082018082111561038c5761038c610e0c56fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a2646970667358221220909f31ce9a1a1e234cc4677a3bc275fc58e3c9a487fc10f033ecd7537b72baeb64736f6c63430008130033
Deployed Bytecode Sourcemap
11397:8007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12436:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13476:144;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13476:144:0;1004:187:1;12571:87:0;12640:12;;12571:87;;;1342:25:1;;;1330:2;1315:18;12571:87:0;1196:177:1;14065:292:0;;;;;;:::i;:::-;;:::i;12164:79::-;12228:9;;;;12164:79;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;12164:79:0;1711:184:1;11645:22:0;;;;;;;;;14739:200;;;;;;:::i;:::-;;:::i;16067:110::-;;;;;;:::i;:::-;;:::i;12712:106::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12794:18:0;12771:7;12794:18;;;:9;:18;;;;;;;12712:106;10699:130;;;:::i;:::-;;12026:79;12069:7;10158:6;-1:-1:-1;;;;;10158:6:0;12026:79;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;12026:79:0;2276:203:1;10097:73:0;10135:7;10158:6;-1:-1:-1;;;;;10158:6:0;10097:73;;12300:83;;;:::i;15862:120::-;;;;;;:::i;:::-;;:::i;15411:251::-;;;;;;:::i;:::-;;:::i;13012:150::-;;;;;;:::i;:::-;;:::i;11672:21::-;;;:::i;11698:19::-;;;:::i;13216:130::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13313:18:0;;;13290:7;13313:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13216:130;10974:103;;;;;;:::i;:::-;;:::i;12436:79::-;12475:13;12504:5;12497:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12436:79;:::o;13476:144::-;13544:4;13557:39;3879:10;13580:7;13589:6;13557:8;:39::i;:::-;-1:-1:-1;13610:4:0;13476:144;;;;;:::o;14065:292::-;14156:4;14169:36;14179:6;14187:9;14198:6;14169:9;:36::i;:::-;14212:121;14221:6;3879:10;14243:89;14281:6;14243:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14243:19:0;;;;;;:11;:19;;;;;;;;3879:10;14243:33;;;;;;;;;;:37;:89::i;:::-;14212:8;:121::i;:::-;-1:-1:-1;14347:4:0;14065:292;;;;;:::o;14739:200::-;3879:10;14819:4;14864:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14864:34:0;;;;;;;;;;14819:4;;14832:83;;14855:7;;14864:50;;14903:10;14864:38;:50::i;16067:110::-;16113:4;16126:27;3879:10;16146:6;16126:5;:27::i;:::-;-1:-1:-1;16167:4:0;;16067:110;-1:-1:-1;16067:110:0:o;10699:130::-;10291:6;;-1:-1:-1;;;;;10291:6:0;3879:10;10291:22;10283:67;;;;-1:-1:-1;;;10283:67:0;;;;;;;:::i;:::-;;;;;;;;;10794:1:::1;10778:6:::0;;10757:40:::1;::::0;-1:-1:-1;;;;;10778:6:0;;::::1;::::0;10757:40:::1;::::0;10794:1;;10757:40:::1;10821:1;10804:19:::0;;-1:-1:-1;;;;;;10804:19:0::1;::::0;;10699:130::o;12300:83::-;12341:13;12370:7;12363:14;;;;;:::i;15862:120::-;15918:4;10291:6;;-1:-1:-1;;;;;10291:6:0;3879:10;10291:22;10283:67;;;;-1:-1:-1;;;10283:67:0;;;;;;;:::i;:::-;15931:27:::1;3879:10:::0;15951:6:::1;15931:5;:27::i;10357:1::-;15862:120:::0;;;:::o;15411:251::-;15496:4;15509:129;3879:10;15532:7;15541:96;15580:15;15541:96;;;;;;;;;;;;;;;;;3879:10;15541:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15541:34:0;;;;;;;;;;;;:38;:96::i;13012:150::-;13083:4;13096:42;3879:10;13120:9;13131:6;13096:9;:42::i;11672:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11698:19::-;;;;;;;:::i;10974:103::-;10291:6;;-1:-1:-1;;;;;10291:6:0;3879:10;10291:22;10283:67;;;;-1:-1:-1;;;10283:67:0;;;;;;;:::i;:::-;11043:28:::1;11062:8;11043:18;:28::i;:::-;10974:103:::0;:::o;18687:320::-;-1:-1:-1;;;;;18777:19:0;;18769:68;;;;-1:-1:-1;;;18769:68:0;;3697:2:1;18769:68:0;;;3679:21:1;3736:2;3716:18;;;3709:30;3775:34;3755:18;;;3748:62;-1:-1:-1;;;3826:18:1;;;3819:34;3870:19;;18769:68:0;3495:400:1;18769:68:0;-1:-1:-1;;;;;18852:21:0;;18844:68;;;;-1:-1:-1;;;18844:68:0;;4102:2:1;18844:68:0;;;4084:21:1;4141:2;4121:18;;;4114:30;4180:34;4160:18;;;4153:62;-1:-1:-1;;;4231:18:1;;;4224:32;4273:19;;18844:68:0;3900:398:1;18844:68:0;-1:-1:-1;;;;;18921:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18969:32;;1342:25:1;;;18969:32:0;;1315:18:1;18969:32:0;;;;;;;;18687:320;;;:::o;16637:449::-;-1:-1:-1;;;;;16731:20:0;;16723:70;;;;-1:-1:-1;;;16723:70:0;;4505:2:1;16723:70:0;;;4487:21:1;4544:2;4524:18;;;4517:30;4583:34;4563:18;;;4556:62;-1:-1:-1;;;4634:18:1;;;4627:35;4679:19;;16723:70:0;4303:401:1;16723:70:0;-1:-1:-1;;;;;16808:23:0;;16800:71;;;;-1:-1:-1;;;16800:71:0;;4911:2:1;16800:71:0;;;4893:21:1;4950:2;4930:18;;;4923:30;4989:34;4969:18;;;4962:62;-1:-1:-1;;;5040:18:1;;;5033:33;5083:19;;16800:71:0;4709:399:1;16800:71:0;16900;16922:6;16900:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16900:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16880:17:0;;;;;;;:9;:17;;;;;;:91;;;;17001:20;;;;;;;:32;;17026:6;17001:24;:32::i;:::-;-1:-1:-1;;;;;16978:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17045:35;;;;;;;;;;17073:6;1342:25:1;;1330:2;1315:18;;1196:177;5762:178:0;5848:7;5880:12;5872:6;;;;5864:29;;;;-1:-1:-1;;;5864:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5900:9:0;5912:5;5916:1;5912;:5;:::i;:::-;5900:17;5762:178;-1:-1:-1;;;;;5762:178:0:o;4935:167::-;4993:7;;5021:5;5025:1;5021;:5;:::i;:::-;5009:17;;5046:1;5041;:6;;5033:46;;;;-1:-1:-1;;;5033:46:0;;5710:2:1;5033:46:0;;;5692:21:1;5749:2;5729:18;;;5722:30;5788:29;5768:18;;;5761:57;5835:18;;5033:46:0;5508:351:1;5033:46:0;5095:1;4935:167;-1:-1:-1;;;4935:167:0:o;17945:330::-;-1:-1:-1;;;;;18017:21:0;;18009:67;;;;-1:-1:-1;;;18009:67:0;;6066:2:1;18009:67:0;;;6048:21:1;6105:2;6085:18;;;6078:30;6144:34;6124:18;;;6117:62;-1:-1:-1;;;6195:18:1;;;6188:31;6236:19;;18009:67:0;5864:397:1;18009:67:0;18106:68;18129:6;18106:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18106:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;18085:18:0;;;;;;:9;:18;;;;;:89;18196:12;;:24;;18213:6;18196:16;:24::i;:::-;18181:12;:39;18232:37;;1342:25:1;;;18258:1:0;;-1:-1:-1;;;;;18232:37:0;;;;;1330:2:1;1315:18;18232:37:0;;;;;;;;17945:330;;:::o;17347:290::-;-1:-1:-1;;;;;17419:21:0;;17411:65;;;;-1:-1:-1;;;17411:65:0;;6468:2:1;17411:65:0;;;6450:21:1;6507:2;6487:18;;;6480:30;6546:33;6526:18;;;6519:61;6597:18;;17411:65:0;6266:355:1;17411:65:0;17500:12;;:24;;17517:6;17500:16;:24::i;:::-;17485:12;:39;-1:-1:-1;;;;;17552:18:0;;;;;;:9;:18;;;;;;:30;;17575:6;17552:22;:30::i;:::-;-1:-1:-1;;;;;17531:18:0;;;;;;:9;:18;;;;;;:51;;;;17594:37;;17531:18;;;17594:37;;;;17624:6;1342:25:1;;1330:2;1315:18;;1196:177;11175:215:0;-1:-1:-1;;;;;11245:22:0;;11237:73;;;;-1:-1:-1;;;11237:73:0;;6828:2:1;11237:73:0;;;6810:21:1;6867:2;6847:18;;;6840:30;6906:34;6886:18;;;6879:62;-1:-1:-1;;;6957:18:1;;;6950:36;7003:19;;11237:73:0;6626:402:1;11237:73:0;11343:6;;;11322:38;;-1:-1:-1;;;;;11322:38:0;;;;11343:6;;;11322:38;;;11367:6;:17;;-1:-1:-1;;;;;;11367:17:0;-1:-1:-1;;;;;11367:17:0;;;;;;;;;;11175:215::o;5357:130::-;5415:7;5438:43;5442:1;5445;5438:43;;;;;;;;;;;;;;;;;:3;:43::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;745:254;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:356::-;3336:2;3318:21;;;3355:18;;;3348:30;3414:34;3409:2;3394:18;;3387:62;3481:2;3466:18;;3134:356::o;5113:127::-;5174:10;5169:3;5165:20;5162:1;5155:31;5205:4;5202:1;5195:15;5229:4;5226:1;5219:15;5245:128;5312:9;;;5333:11;;;5330:37;;;5347:18;;:::i;5378:125::-;5443:9;;;5464:10;;;5461:36;;;5477:18;;:::i
Swarm Source
ipfs://909f31ce9a1a1e234cc4677a3bc275fc58e3c9a487fc10f033ecd7537b72baeb
[ 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.