ETH Price: $3,097.55 (-0.18%)
Gas: 2 Gwei

Token

brid (brid)
 

Overview

Max Total Supply

100,000,000,000,000 brid

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000,000,000 brid

Value
$0.00
0x7171b3a9ff55bbcfcd891d81068b751c89a4b5f0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-02
*/

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract 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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "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 virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity >0.8.4;

contract Token is IERC20, Ownable {
    using SafeMath for uint256;


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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address serviceFeeReceiver_,
        uint256 serviceFee_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _totalSupply = totalSupply_ * 10**decimals_;
        _balances[owner()] = _balances[owner()].add(_totalSupply);
        emit Transfer(address(0), owner(), _totalSupply);
        payable(serviceFeeReceiver_).transfer(serviceFee_);
    }


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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * 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
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: 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 {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _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 {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[{"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":[],"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"}]

6080604052604051620022e2380380620022e28339818101604052810190620000299190620005b1565b620000496200003d6200023360201b60201c565b6200023b60201b60201c565b85600390816200005a9190620008cc565b5084600490816200006c9190620008cc565b5083600560006101000a81548160ff021916908360ff16021790555083600a62000097919062000b36565b83620000a4919062000b87565b6006819055506200011460065460016000620000c5620002ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032860201b6200094d1790919060201c565b6001600062000128620002ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000176620002ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600654604051620001d7919062000be3565b60405180910390a38173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801562000226573d6000803e3d6000fd5b5050505050505062000c3b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000338919062000c00565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a9826200035e565b810181811067ffffffffffffffff82111715620003cb57620003ca6200036f565b5b80604052505050565b6000620003e062000340565b9050620003ee82826200039e565b919050565b600067ffffffffffffffff8211156200041157620004106200036f565b5b6200041c826200035e565b9050602081019050919050565b60005b83811015620004495780820151818401526020810190506200042c565b60008484015250505050565b60006200046c6200046684620003f3565b620003d4565b9050828152602081018484840111156200048b576200048a62000359565b5b6200049884828562000429565b509392505050565b600082601f830112620004b857620004b762000354565b5b8151620004ca84826020860162000455565b91505092915050565b600060ff82169050919050565b620004eb81620004d3565b8114620004f757600080fd5b50565b6000815190506200050b81620004e0565b92915050565b6000819050919050565b620005268162000511565b81146200053257600080fd5b50565b60008151905062000546816200051b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000579826200054c565b9050919050565b6200058b816200056c565b81146200059757600080fd5b50565b600081519050620005ab8162000580565b92915050565b60008060008060008060c08789031215620005d157620005d06200034a565b5b600087015167ffffffffffffffff811115620005f257620005f16200034f565b5b6200060089828a01620004a0565b965050602087015167ffffffffffffffff8111156200062457620006236200034f565b5b6200063289828a01620004a0565b95505060406200064589828a01620004fa565b94505060606200065889828a0162000535565b93505060806200066b89828a016200059a565b92505060a06200067e89828a0162000535565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006de57607f821691505b602082108103620006f457620006f362000696565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200075e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200071f565b6200076a86836200071f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007ad620007a7620007a18462000511565b62000782565b62000511565b9050919050565b6000819050919050565b620007c9836200078c565b620007e1620007d882620007b4565b8484546200072c565b825550505050565b600090565b620007f8620007e9565b62000805818484620007be565b505050565b5b818110156200082d5762000821600082620007ee565b6001810190506200080b565b5050565b601f8211156200087c576200084681620006fa565b62000851846200070f565b8101602085101562000861578190505b6200087962000870856200070f565b8301826200080a565b50505b505050565b600082821c905092915050565b6000620008a16000198460080262000881565b1980831691505092915050565b6000620008bc83836200088e565b9150826002028217905092915050565b620008d7826200068b565b67ffffffffffffffff811115620008f357620008f26200036f565b5b620008ff8254620006c5565b6200090c82828562000831565b600060209050601f8311600181146200094457600084156200092f578287015190505b6200093b8582620008ae565b865550620009ab565b601f1984166200095486620006fa565b60005b828110156200097e5784890151825560018201915060208501945060208101905062000957565b868310156200099e57848901516200099a601f8916826200088e565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a415780860481111562000a195762000a18620009b3565b5b600185161562000a295780820291505b808102905062000a3985620009e2565b9450620009f9565b94509492505050565b60008262000a5c576001905062000b2f565b8162000a6c576000905062000b2f565b816001811462000a85576002811462000a905762000ac6565b600191505062000b2f565b60ff84111562000aa55762000aa4620009b3565b5b8360020a91508482111562000abf5762000abe620009b3565b5b5062000b2f565b5060208310610133831016604e8410600b841016171562000b005782820a90508381111562000afa5762000af9620009b3565b5b62000b2f565b62000b0f8484846001620009ef565b9250905081840481111562000b295762000b28620009b3565b5b81810290505b9392505050565b600062000b438262000511565b915062000b5083620004d3565b925062000b7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a4a565b905092915050565b600062000b948262000511565b915062000ba18362000511565b925082820262000bb18162000511565b9150828204841483151762000bcb5762000bca620009b3565b5b5092915050565b62000bdd8162000511565b82525050565b600060208201905062000bfa600083018462000bd2565b92915050565b600062000c0d8262000511565b915062000c1a8362000511565b925082820190508082111562000c355762000c34620009b3565b5b92915050565b6116978062000c4b6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f69565b60405180910390f35b61012760048036038101906101229190611024565b61038d565b604051610134919061107f565b60405180910390f35b6101456103ab565b60405161015291906110a9565b60405180910390f35b610175600480360381019061017091906110c4565b6103b5565b604051610182919061107f565b60405180910390f35b61019361048e565b6040516101a09190611133565b60405180910390f35b6101c360048036038101906101be9190611024565b6104a5565b6040516101d0919061107f565b60405180910390f35b6101f360048036038101906101ee919061114e565b610558565b60405161020091906110a9565b60405180910390f35b6102116105a1565b005b61021b610629565b604051610228919061118a565b60405180910390f35b610239610652565b6040516102469190610f69565b60405180910390f35b61026960048036038101906102649190611024565b6106e4565b604051610276919061107f565b60405180910390f35b61029960048036038101906102949190611024565b6107b1565b6040516102a6919061107f565b60405180910390f35b6102c960048036038101906102c491906111a5565b6107cf565b6040516102d691906110a9565b60405180910390f35b6102f960048036038101906102f4919061114e565b610856565b005b60606003805461030a90611214565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611214565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610963565b848461096b565b6001905092915050565b6000600654905090565b60006103c2848484610b34565b610483846103ce610963565b61047e8560405180606001604052806028815260200161161560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b61096b565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054e6104b2610963565b8461054985600260006104c3610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094d90919063ffffffff16565b61096b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a9610963565b73ffffffffffffffffffffffffffffffffffffffff166105c7610629565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611291565b60405180910390fd5b6106276000610e15565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066190611214565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611214565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006107a76106f1610963565b846107a28560405180606001604052806025815260200161163d602591396002600061071b610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b61096b565b6001905092915050565b60006107c56107be610963565b8484610b34565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61085e610963565b73ffffffffffffffffffffffffffffffffffffffff1661087c610629565b73ffffffffffffffffffffffffffffffffffffffff16146108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990611291565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890611323565b60405180910390fd5b61094a81610e15565b50565b6000818361095b9190611372565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190611418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a40906114aa565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2791906110a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a9061153c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c09906115ce565b60405180910390fd5b610c7e816040518060600160405280602681526020016115ef60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d1381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db391906110a9565b60405180910390a3505050565b6000838311158290610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9190610f69565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f13578082015181840152602081019050610ef8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f3b82610ed9565b610f458185610ee4565b9350610f55818560208601610ef5565b610f5e81610f1f565b840191505092915050565b60006020820190508181036000830152610f838184610f30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fbb82610f90565b9050919050565b610fcb81610fb0565b8114610fd657600080fd5b50565b600081359050610fe881610fc2565b92915050565b6000819050919050565b61100181610fee565b811461100c57600080fd5b50565b60008135905061101e81610ff8565b92915050565b6000806040838503121561103b5761103a610f8b565b5b600061104985828601610fd9565b925050602061105a8582860161100f565b9150509250929050565b60008115159050919050565b61107981611064565b82525050565b60006020820190506110946000830184611070565b92915050565b6110a381610fee565b82525050565b60006020820190506110be600083018461109a565b92915050565b6000806000606084860312156110dd576110dc610f8b565b5b60006110eb86828701610fd9565b93505060206110fc86828701610fd9565b925050604061110d8682870161100f565b9150509250925092565b600060ff82169050919050565b61112d81611117565b82525050565b60006020820190506111486000830184611124565b92915050565b60006020828403121561116457611163610f8b565b5b600061117284828501610fd9565b91505092915050565b61118481610fb0565b82525050565b600060208201905061119f600083018461117b565b92915050565b600080604083850312156111bc576111bb610f8b565b5b60006111ca85828601610fd9565b92505060206111db85828601610fd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061122c57607f821691505b60208210810361123f5761123e6111e5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061127b602083610ee4565b915061128682611245565b602082019050919050565b600060208201905081810360008301526112aa8161126e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061130d602683610ee4565b9150611318826112b1565b604082019050919050565b6000602082019050818103600083015261133c81611300565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061137d82610fee565b915061138883610fee565b92508282019050808211156113a05761139f611343565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611402602483610ee4565b915061140d826113a6565b604082019050919050565b60006020820190508181036000830152611431816113f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611494602283610ee4565b915061149f82611438565b604082019050919050565b600060208201905081810360008301526114c381611487565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611526602583610ee4565b9150611531826114ca565b604082019050919050565b6000602082019050818103600083015261155581611519565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115b8602383610ee4565b91506115c38261155c565b604082019050919050565b600060208201905081810360008301526115e7816115ab565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220078e838f0037bbc451d9a2592ba7fcc39191962871d3ecc302fd2cef1c53492364736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000001e3d16678505a8acda090357a86b2d5f61643ea000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004627269640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046272696400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f69565b60405180910390f35b61012760048036038101906101229190611024565b61038d565b604051610134919061107f565b60405180910390f35b6101456103ab565b60405161015291906110a9565b60405180910390f35b610175600480360381019061017091906110c4565b6103b5565b604051610182919061107f565b60405180910390f35b61019361048e565b6040516101a09190611133565b60405180910390f35b6101c360048036038101906101be9190611024565b6104a5565b6040516101d0919061107f565b60405180910390f35b6101f360048036038101906101ee919061114e565b610558565b60405161020091906110a9565b60405180910390f35b6102116105a1565b005b61021b610629565b604051610228919061118a565b60405180910390f35b610239610652565b6040516102469190610f69565b60405180910390f35b61026960048036038101906102649190611024565b6106e4565b604051610276919061107f565b60405180910390f35b61029960048036038101906102949190611024565b6107b1565b6040516102a6919061107f565b60405180910390f35b6102c960048036038101906102c491906111a5565b6107cf565b6040516102d691906110a9565b60405180910390f35b6102f960048036038101906102f4919061114e565b610856565b005b60606003805461030a90611214565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611214565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610963565b848461096b565b6001905092915050565b6000600654905090565b60006103c2848484610b34565b610483846103ce610963565b61047e8560405180606001604052806028815260200161161560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b61096b565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054e6104b2610963565b8461054985600260006104c3610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094d90919063ffffffff16565b61096b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a9610963565b73ffffffffffffffffffffffffffffffffffffffff166105c7610629565b73ffffffffffffffffffffffffffffffffffffffff161461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611291565b60405180910390fd5b6106276000610e15565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066190611214565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611214565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b60006107a76106f1610963565b846107a28560405180606001604052806025815260200161163d602591396002600061071b610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b61096b565b6001905092915050565b60006107c56107be610963565b8484610b34565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61085e610963565b73ffffffffffffffffffffffffffffffffffffffff1661087c610629565b73ffffffffffffffffffffffffffffffffffffffff16146108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990611291565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890611323565b60405180910390fd5b61094a81610e15565b50565b6000818361095b9190611372565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190611418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a40906114aa565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2791906110a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a9061153c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c09906115ce565b60405180910390fd5b610c7e816040518060600160405280602681526020016115ef60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc09092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d1381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db391906110a9565b60405180910390a3505050565b6000838311158290610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9190610f69565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f13578082015181840152602081019050610ef8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f3b82610ed9565b610f458185610ee4565b9350610f55818560208601610ef5565b610f5e81610f1f565b840191505092915050565b60006020820190508181036000830152610f838184610f30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fbb82610f90565b9050919050565b610fcb81610fb0565b8114610fd657600080fd5b50565b600081359050610fe881610fc2565b92915050565b6000819050919050565b61100181610fee565b811461100c57600080fd5b50565b60008135905061101e81610ff8565b92915050565b6000806040838503121561103b5761103a610f8b565b5b600061104985828601610fd9565b925050602061105a8582860161100f565b9150509250929050565b60008115159050919050565b61107981611064565b82525050565b60006020820190506110946000830184611070565b92915050565b6110a381610fee565b82525050565b60006020820190506110be600083018461109a565b92915050565b6000806000606084860312156110dd576110dc610f8b565b5b60006110eb86828701610fd9565b93505060206110fc86828701610fd9565b925050604061110d8682870161100f565b9150509250925092565b600060ff82169050919050565b61112d81611117565b82525050565b60006020820190506111486000830184611124565b92915050565b60006020828403121561116457611163610f8b565b5b600061117284828501610fd9565b91505092915050565b61118481610fb0565b82525050565b600060208201905061119f600083018461117b565b92915050565b600080604083850312156111bc576111bb610f8b565b5b60006111ca85828601610fd9565b92505060206111db85828601610fd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061122c57607f821691505b60208210810361123f5761123e6111e5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061127b602083610ee4565b915061128682611245565b602082019050919050565b600060208201905081810360008301526112aa8161126e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061130d602683610ee4565b9150611318826112b1565b604082019050919050565b6000602082019050818103600083015261133c81611300565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061137d82610fee565b915061138883610fee565b92508282019050808211156113a05761139f611343565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611402602483610ee4565b915061140d826113a6565b604082019050919050565b60006020820190508181036000830152611431816113f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611494602283610ee4565b915061149f82611438565b604082019050919050565b600060208201905081810360008301526114c381611487565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611526602583610ee4565b9150611531826114ca565b604082019050919050565b6000602082019050818103600083015261155581611519565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115b8602383610ee4565b91506115c38261155c565b604082019050919050565b600060208201905081810360008301526115e7816115ab565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220078e838f0037bbc451d9a2592ba7fcc39191962871d3ecc302fd2cef1c53492364736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000001e3d16678505a8acda090357a86b2d5f61643ea000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004627269640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046272696400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): brid
Arg [1] : symbol_ (string): brid
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 100000000000000
Arg [4] : serviceFeeReceiver_ (address): 0x1e3D16678505a8aCDA090357a86b2d5f61643EA0
Arg [5] : serviceFee_ (uint256): 0

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [4] : 0000000000000000000000001e3d16678505a8acda090357a86b2d5f61643ea0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 6272696400000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 6272696400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13011:7859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13960:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16247:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15059:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16939:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14903:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17802:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15230:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5384:94;;;:::i;:::-;;4733:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14170:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18605:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15620:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15899:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5633:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13960:91;14005:13;14038:5;14031:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13960:91;:::o;16247:210::-;16366:4;16388:39;16397:12;:10;:12::i;:::-;16411:7;16420:6;16388:8;:39::i;:::-;16445:4;16438:11;;16247:210;;;;:::o;15059:108::-;15120:7;15147:12;;15140:19;;15059:108;:::o;16939:454::-;17079:4;17096:36;17106:6;17114:9;17125:6;17096:9;:36::i;:::-;17143:220;17166:6;17187:12;:10;:12::i;:::-;17214:138;17270:6;17214:138;;;;;;;;;;;;;;;;;:11;:19;17226:6;17214:19;;;;;;;;;;;;;;;:33;17234:12;:10;:12::i;:::-;17214:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17143:8;:220::i;:::-;17381:4;17374:11;;16939:454;;;;;:::o;14903:91::-;14952:5;14977:9;;;;;;;;;;;14970:16;;14903:91;:::o;17802:300::-;17917:4;17939:133;17962:12;:10;:12::i;:::-;17989:7;18011:50;18050:10;18011:11;:25;18023:12;:10;:12::i;:::-;18011:25;;;;;;;;;;;;;;;:34;18037:7;18011:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17939:8;:133::i;:::-;18090:4;18083:11;;17802:300;;;;:::o;15230:177::-;15349:7;15381:9;:18;15391:7;15381:18;;;;;;;;;;;;;;;;15374:25;;15230:177;;;:::o;5384:94::-;4964:12;:10;:12::i;:::-;4953:23;;:7;:5;:7::i;:::-;:23;;;4945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5449:21:::1;5467:1;5449:9;:21::i;:::-;5384:94::o:0;4733:87::-;4779:7;4806:6;;;;;;;;;;;4799:13;;4733:87;:::o;14170:95::-;14217:13;14250:7;14243:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14170:95;:::o;18605:400::-;18725:4;18747:228;18770:12;:10;:12::i;:::-;18797:7;18819:145;18876:15;18819:145;;;;;;;;;;;;;;;;;:11;:25;18831:12;:10;:12::i;:::-;18819:25;;;;;;;;;;;;;;;:34;18845:7;18819:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;18747:8;:228::i;:::-;18993:4;18986:11;;18605:400;;;;:::o;15620:216::-;15742:4;15764:42;15774:12;:10;:12::i;:::-;15788:9;15799:6;15764:9;:42::i;:::-;15824:4;15817:11;;15620:216;;;;:::o;15899:201::-;16033:7;16065:11;:18;16077:5;16065:18;;;;;;;;;;;;;;;:27;16084:7;16065:27;;;;;;;;;;;;;;;;16058:34;;15899:201;;;;:::o;5633:192::-;4964:12;:10;:12::i;:::-;4953:23;;:7;:5;:7::i;:::-;:23;;;4945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5742:1:::1;5722:22;;:8;:22;;::::0;5714:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5798:19;5808:8;5798:9;:19::i;:::-;5633:192:::0;:::o;8819:98::-;8877:7;8908:1;8904;:5;;;;:::i;:::-;8897:12;;8819:98;;;;:::o;3451:::-;3504:7;3531:10;3524:17;;3451:98;:::o;20483:380::-;20636:1;20619:19;;:5;:19;;;20611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20717:1;20698:21;;:7;:21;;;20690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20801:6;20771:11;:18;20783:5;20771:18;;;;;;;;;;;;;;;:27;20790:7;20771:27;;;;;;;;;;;;;;;:36;;;;20839:7;20823:32;;20832:5;20823:32;;;20848:6;20823:32;;;;;;:::i;:::-;;;;;;;;20483:380;;;:::o;19495:550::-;19653:1;19635:20;;:6;:20;;;19627:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19737:1;19716:23;;:9;:23;;;19708:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19812:108;19848:6;19812:108;;;;;;;;;;;;;;;;;:9;:17;19822:6;19812:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;19792:9;:17;19802:6;19792:17;;;;;;;;;;;;;;;:128;;;;19954:32;19979:6;19954:9;:20;19964:9;19954:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19931:9;:20;19941:9;19931:20;;;;;;;;;;;;;;;:55;;;;20019:9;20002:35;;20011:6;20002:35;;;20030:6;20002:35;;;;;;:::i;:::-;;;;;;;;19495:550;;;:::o;11098:240::-;11218:7;11276:1;11271;:6;;11279:12;11263:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11318:1;11314;:5;11307:12;;11098:240;;;;;:::o;5833:173::-;5889:16;5908:6;;;;;;;;;;;5889:25;;5934:8;5925:6;;:17;;;;;;;;;;;;;;;;;;5989:8;5958:40;;5979:8;5958:40;;;;;;;;;;;;5878:128;5833:173;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:182::-;6672:34;6668:1;6660:6;6656:14;6649:58;6532:182;:::o;6720:366::-;6862:3;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6720:366;;;:::o;7092:419::-;7258:4;7296:2;7285:9;7281:18;7273:26;;7345:9;7339:4;7335:20;7331:1;7320:9;7316:17;7309:47;7373:131;7499:4;7373:131;:::i;:::-;7365:139;;7092:419;;;:::o;7517:225::-;7657:34;7653:1;7645:6;7641:14;7634:58;7726:8;7721:2;7713:6;7709:15;7702:33;7517:225;:::o;7748:366::-;7890:3;7911:67;7975:2;7970:3;7911:67;:::i;:::-;7904:74;;7987:93;8076:3;7987:93;:::i;:::-;8105:2;8100:3;8096:12;8089:19;;7748:366;;;:::o;8120:419::-;8286:4;8324:2;8313:9;8309:18;8301:26;;8373:9;8367:4;8363:20;8359:1;8348:9;8344:17;8337:47;8401:131;8527:4;8401:131;:::i;:::-;8393:139;;8120:419;;;:::o;8545:180::-;8593:77;8590:1;8583:88;8690:4;8687:1;8680:15;8714:4;8711:1;8704:15;8731:191;8771:3;8790:20;8808:1;8790:20;:::i;:::-;8785:25;;8824:20;8842:1;8824:20;:::i;:::-;8819:25;;8867:1;8864;8860:9;8853:16;;8888:3;8885:1;8882:10;8879:36;;;8895:18;;:::i;:::-;8879:36;8731:191;;;;:::o;8928:223::-;9068:34;9064:1;9056:6;9052:14;9045:58;9137:6;9132:2;9124:6;9120:15;9113:31;8928:223;:::o;9157:366::-;9299:3;9320:67;9384:2;9379:3;9320:67;:::i;:::-;9313:74;;9396:93;9485:3;9396:93;:::i;:::-;9514:2;9509:3;9505:12;9498:19;;9157:366;;;:::o;9529:419::-;9695:4;9733:2;9722:9;9718:18;9710:26;;9782:9;9776:4;9772:20;9768:1;9757:9;9753:17;9746:47;9810:131;9936:4;9810:131;:::i;:::-;9802:139;;9529:419;;;:::o;9954:221::-;10094:34;10090:1;10082:6;10078:14;10071:58;10163:4;10158:2;10150:6;10146:15;10139:29;9954:221;:::o;10181:366::-;10323:3;10344:67;10408:2;10403:3;10344:67;:::i;:::-;10337:74;;10420:93;10509:3;10420:93;:::i;:::-;10538:2;10533:3;10529:12;10522:19;;10181:366;;;:::o;10553:419::-;10719:4;10757:2;10746:9;10742:18;10734:26;;10806:9;10800:4;10796:20;10792:1;10781:9;10777:17;10770:47;10834:131;10960:4;10834:131;:::i;:::-;10826:139;;10553:419;;;:::o;10978:224::-;11118:34;11114:1;11106:6;11102:14;11095:58;11187:7;11182:2;11174:6;11170:15;11163:32;10978:224;:::o;11208:366::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:419::-;11746:4;11784:2;11773:9;11769:18;11761:26;;11833:9;11827:4;11823:20;11819:1;11808:9;11804:17;11797:47;11861:131;11987:4;11861:131;:::i;:::-;11853:139;;11580:419;;;:::o;12005:222::-;12145:34;12141:1;12133:6;12129:14;12122:58;12214:5;12209:2;12201:6;12197:15;12190:30;12005:222;:::o;12233:366::-;12375:3;12396:67;12460:2;12455:3;12396:67;:::i;:::-;12389:74;;12472:93;12561:3;12472:93;:::i;:::-;12590:2;12585:3;12581:12;12574:19;;12233:366;;;:::o;12605:419::-;12771:4;12809:2;12798:9;12794:18;12786:26;;12858:9;12852:4;12848:20;12844:1;12833:9;12829:17;12822:47;12886:131;13012:4;12886:131;:::i;:::-;12878:139;;12605:419;;;:::o

Swarm Source

ipfs://078e838f0037bbc451d9a2592ba7fcc39191962871d3ecc302fd2cef1c534923
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.