ETH Price: $2,992.45 (+4.58%)
Gas: 2 Gwei

Token

oracledefi.finance (ORA)
 

Overview

Max Total Supply

100,000 ORA

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
homocryptus.eth
Balance
13.12047394116888524 ORA

Value
$0.00
0x14f6fcddaf37ba8d45e56a0d65692bbb3ba1ee1e
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:
OracleDefi

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: OracleDefi.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

import "./ERC20.sol";
import "./IERC20.sol";


contract OracleDefi is ERC20 {
    
    address public deployer;
    constructor() ERC20("oracledefi.finance", "ORA" ) {
        _mint(msg.sender, 100000 * (10 ** uint256(18)));
        deployer = msg.sender;
    } 
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overloaded;
     *
     * 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 override returns (uint8) {
        return 18;
    }

    /**
     * @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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += 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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), 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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 3 of 5: IERC20.sol
// 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);
}

File 4 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601281526020017f6f7261636c65646566692e66696e616e636500000000000000000000000000008152506040518060400160405280600381526020017f4f5241000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000294565b508060049080519060200190620000af92919062000294565b505050620000e3336012600a620000c791906200049f565b620186a0620000d79190620005dc565b6200012a60201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006e8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200019d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001949062000397565b60405180910390fd5b620001b1600083836200028f60201b60201c565b8060026000828254620001c59190620003e7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021c9190620003e7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002839190620003b9565b60405180910390a35050565b505050565b828054620002a29062000647565b90600052602060002090601f016020900481019282620002c6576000855562000312565b82601f10620002e157805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000311578251825591602001919060010190620002f4565b5b50905062000321919062000325565b5090565b5b808211156200034057600081600090555060010162000326565b5090565b600062000353601f83620003d6565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000391816200063d565b82525050565b60006020820190508181036000830152620003b28162000344565b9050919050565b6000602082019050620003d0600083018462000386565b92915050565b600082825260208201905092915050565b6000620003f4826200063d565b915062000401836200063d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200043957620004386200067d565b5b828201905092915050565b6000808291508390505b600185111562000496578086048111156200046e576200046d6200067d565b5b60018516156200047e5780820291505b80810290506200048e85620006db565b94506200044e565b94509492505050565b6000620004ac826200063d565b9150620004b9836200063d565b9250620004e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004f0565b905092915050565b600082620005025760019050620005d5565b81620005125760009050620005d5565b81600181146200052b576002811462000536576200056c565b6001915050620005d5565b60ff8411156200054b576200054a6200067d565b5b8360020a9150848211156200056557620005646200067d565b5b50620005d5565b5060208310610133831016604e8410600b8410161715620005a65782820a905083811115620005a0576200059f6200067d565b5b620005d5565b620005b5848484600162000444565b92509050818404811115620005cf57620005ce6200067d565b5b81810290505b9392505050565b6000620005e9826200063d565b9150620005f6836200063d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200063257620006316200067d565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200066057607f821691505b60208210811415620006775762000676620006ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b6113f980620006f86000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063d5f3948814610251578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029f565b6040516100ce919061108e565b60405180910390f35b6100f160048036038101906100ec9190610cdd565b610331565b6040516100fe9190611073565b60405180910390f35b61010f61034f565b60405161011c9190611190565b60405180910390f35b61013f600480360381019061013a9190610c8e565b610359565b60405161014c9190611073565b60405180910390f35b61015d61045a565b60405161016a91906111ab565b60405180910390f35b61018d60048036038101906101889190610cdd565b610463565b60405161019a9190611073565b60405180910390f35b6101bd60048036038101906101b89190610c29565b61050f565b6040516101ca9190611190565b60405180910390f35b6101db610557565b6040516101e8919061108e565b60405180910390f35b61020b60048036038101906102069190610cdd565b6105e9565b6040516102189190611073565b60405180910390f35b61023b60048036038101906102369190610cdd565b6106dd565b6040516102489190611073565b60405180910390f35b6102596106fb565b6040516102669190611058565b60405180910390f35b61028960048036038101906102849190610c52565b610721565b6040516102969190611190565b60405180910390f35b6060600380546102ae906112f4565b80601f01602080910402602001604051908101604052809291908181526020018280546102da906112f4565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061034561033e6107a8565b84846107b0565b6001905092915050565b6000600254905090565b600061036684848461097b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103b16107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042890611110565b60405180910390fd5b61044e8561043d6107a8565b85846104499190611238565b6107b0565b60019150509392505050565b60006012905090565b60006105056104706107a8565b84846001600061047e6107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050091906111e2565b6107b0565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610566906112f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610592906112f4565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050905090565b600080600160006105f86107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611170565b60405180910390fd5b6106d26106c06107a8565b8585846106cd9190611238565b6107b0565b600191505092915050565b60006106f16106ea6107a8565b848461097b565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790611150565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906110d0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161096e9190611190565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290611130565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a52906110b0565b60405180910390fd5b610a66838383610bfa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906110f0565b60405180910390fd5b8181610af89190611238565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8891906111e2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bec9190611190565b60405180910390a350505050565b505050565b600081359050610c0e81611395565b92915050565b600081359050610c23816113ac565b92915050565b600060208284031215610c3b57600080fd5b6000610c4984828501610bff565b91505092915050565b60008060408385031215610c6557600080fd5b6000610c7385828601610bff565b9250506020610c8485828601610bff565b9150509250929050565b600080600060608486031215610ca357600080fd5b6000610cb186828701610bff565b9350506020610cc286828701610bff565b9250506040610cd386828701610c14565b9150509250925092565b60008060408385031215610cf057600080fd5b6000610cfe85828601610bff565b9250506020610d0f85828601610c14565b9150509250929050565b610d228161126c565b82525050565b610d318161127e565b82525050565b6000610d42826111c6565b610d4c81856111d1565b9350610d5c8185602086016112c1565b610d6581611384565b840191505092915050565b6000610d7d6023836111d1565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610de36022836111d1565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e496026836111d1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610eaf6028836111d1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f156025836111d1565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7b6024836111d1565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fe16025836111d1565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611043816112aa565b82525050565b611052816112b4565b82525050565b600060208201905061106d6000830184610d19565b92915050565b60006020820190506110886000830184610d28565b92915050565b600060208201905081810360008301526110a88184610d37565b905092915050565b600060208201905081810360008301526110c981610d70565b9050919050565b600060208201905081810360008301526110e981610dd6565b9050919050565b6000602082019050818103600083015261110981610e3c565b9050919050565b6000602082019050818103600083015261112981610ea2565b9050919050565b6000602082019050818103600083015261114981610f08565b9050919050565b6000602082019050818103600083015261116981610f6e565b9050919050565b6000602082019050818103600083015261118981610fd4565b9050919050565b60006020820190506111a5600083018461103a565b92915050565b60006020820190506111c06000830184611049565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111ed826112aa565b91506111f8836112aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561122d5761122c611326565b5b828201905092915050565b6000611243826112aa565b915061124e836112aa565b92508282101561126157611260611326565b5b828203905092915050565b60006112778261128a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112df5780820151818401526020810190506112c4565b838111156112ee576000848401525b50505050565b6000600282049050600182168061130c57607f821691505b602082108114156113205761131f611355565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61139e8161126c565b81146113a957600080fd5b50565b6113b5816112aa565b81146113c057600080fd5b5056fea26469706673582212203d7f2b12f4a4ee9990527bbf931f77a5e66fc6448b9781fc572c696cf288cb8b64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063d5f3948814610251578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029f565b6040516100ce919061108e565b60405180910390f35b6100f160048036038101906100ec9190610cdd565b610331565b6040516100fe9190611073565b60405180910390f35b61010f61034f565b60405161011c9190611190565b60405180910390f35b61013f600480360381019061013a9190610c8e565b610359565b60405161014c9190611073565b60405180910390f35b61015d61045a565b60405161016a91906111ab565b60405180910390f35b61018d60048036038101906101889190610cdd565b610463565b60405161019a9190611073565b60405180910390f35b6101bd60048036038101906101b89190610c29565b61050f565b6040516101ca9190611190565b60405180910390f35b6101db610557565b6040516101e8919061108e565b60405180910390f35b61020b60048036038101906102069190610cdd565b6105e9565b6040516102189190611073565b60405180910390f35b61023b60048036038101906102369190610cdd565b6106dd565b6040516102489190611073565b60405180910390f35b6102596106fb565b6040516102669190611058565b60405180910390f35b61028960048036038101906102849190610c52565b610721565b6040516102969190611190565b60405180910390f35b6060600380546102ae906112f4565b80601f01602080910402602001604051908101604052809291908181526020018280546102da906112f4565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061034561033e6107a8565b84846107b0565b6001905092915050565b6000600254905090565b600061036684848461097b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103b16107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042890611110565b60405180910390fd5b61044e8561043d6107a8565b85846104499190611238565b6107b0565b60019150509392505050565b60006012905090565b60006105056104706107a8565b84846001600061047e6107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050091906111e2565b6107b0565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610566906112f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610592906112f4565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050905090565b600080600160006105f86107a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611170565b60405180910390fd5b6106d26106c06107a8565b8585846106cd9190611238565b6107b0565b600191505092915050565b60006106f16106ea6107a8565b848461097b565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790611150565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906110d0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161096e9190611190565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290611130565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a52906110b0565b60405180910390fd5b610a66838383610bfa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906110f0565b60405180910390fd5b8181610af89190611238565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8891906111e2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bec9190611190565b60405180910390a350505050565b505050565b600081359050610c0e81611395565b92915050565b600081359050610c23816113ac565b92915050565b600060208284031215610c3b57600080fd5b6000610c4984828501610bff565b91505092915050565b60008060408385031215610c6557600080fd5b6000610c7385828601610bff565b9250506020610c8485828601610bff565b9150509250929050565b600080600060608486031215610ca357600080fd5b6000610cb186828701610bff565b9350506020610cc286828701610bff565b9250506040610cd386828701610c14565b9150509250925092565b60008060408385031215610cf057600080fd5b6000610cfe85828601610bff565b9250506020610d0f85828601610c14565b9150509250929050565b610d228161126c565b82525050565b610d318161127e565b82525050565b6000610d42826111c6565b610d4c81856111d1565b9350610d5c8185602086016112c1565b610d6581611384565b840191505092915050565b6000610d7d6023836111d1565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610de36022836111d1565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e496026836111d1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610eaf6028836111d1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f156025836111d1565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7b6024836111d1565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fe16025836111d1565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611043816112aa565b82525050565b611052816112b4565b82525050565b600060208201905061106d6000830184610d19565b92915050565b60006020820190506110886000830184610d28565b92915050565b600060208201905081810360008301526110a88184610d37565b905092915050565b600060208201905081810360008301526110c981610d70565b9050919050565b600060208201905081810360008301526110e981610dd6565b9050919050565b6000602082019050818103600083015261110981610e3c565b9050919050565b6000602082019050818103600083015261112981610ea2565b9050919050565b6000602082019050818103600083015261114981610f08565b9050919050565b6000602082019050818103600083015261116981610f6e565b9050919050565b6000602082019050818103600083015261118981610fd4565b9050919050565b60006020820190506111a5600083018461103a565b92915050565b60006020820190506111c06000830184611049565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111ed826112aa565b91506111f8836112aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561122d5761122c611326565b5b828201905092915050565b6000611243826112aa565b915061124e836112aa565b92508282101561126157611260611326565b5b828203905092915050565b60006112778261128a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112df5780820151818401526020810190506112c4565b838111156112ee576000848401525b50505050565b6000600282049050600182168061130c57607f821691505b602082108114156113205761131f611355565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61139e8161126c565b81146113a957600080fd5b50565b6113b5816112aa565b81146113c057600080fd5b5056fea26469706673582212203d7f2b12f4a4ee9990527bbf931f77a5e66fc6448b9781fc572c696cf288cb8b64736f6c63430008000033

Deployed Bytecode Sourcemap

112:224:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4282:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3235:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4933:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3077:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5764:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2334:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6482:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3746:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;154:23:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3984:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2115:100;2169:13;2202:5;2195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:100;:::o;4282:169::-;4365:4;4382:39;4391:12;:10;:12::i;:::-;4405:7;4414:6;4382:8;:39::i;:::-;4439:4;4432:11;;4282:169;;;;:::o;3235:108::-;3296:7;3323:12;;3316:19;;3235:108;:::o;4933:422::-;5039:4;5056:36;5066:6;5074:9;5085:6;5056:9;:36::i;:::-;5105:24;5132:11;:19;5144:6;5132:19;;;;;;;;;;;;;;;:33;5152:12;:10;:12::i;:::-;5132:33;;;;;;;;;;;;;;;;5105:60;;5204:6;5184:16;:26;;5176:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5266:57;5275:6;5283:12;:10;:12::i;:::-;5316:6;5297:16;:25;;;;:::i;:::-;5266:8;:57::i;:::-;5343:4;5336:11;;;4933:422;;;;;:::o;3077:93::-;3135:5;3160:2;3153:9;;3077:93;:::o;5764:215::-;5852:4;5869:80;5878:12;:10;:12::i;:::-;5892:7;5938:10;5901:11;:25;5913:12;:10;:12::i;:::-;5901:25;;;;;;;;;;;;;;;:34;5927:7;5901:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5869:8;:80::i;:::-;5967:4;5960:11;;5764:215;;;;:::o;3406:127::-;3480:7;3507:9;:18;3517:7;3507:18;;;;;;;;;;;;;;;;3500:25;;3406:127;;;:::o;2334:104::-;2390:13;2423:7;2416:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2334:104;:::o;6482:377::-;6575:4;6592:24;6619:11;:25;6631:12;:10;:12::i;:::-;6619:25;;;;;;;;;;;;;;;:34;6645:7;6619:34;;;;;;;;;;;;;;;;6592:61;;6692:15;6672:16;:35;;6664:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6760:67;6769:12;:10;:12::i;:::-;6783:7;6811:15;6792:16;:34;;;;:::i;:::-;6760:8;:67::i;:::-;6847:4;6840:11;;;6482:377;;;;:::o;3746:175::-;3832:4;3849:42;3859:12;:10;:12::i;:::-;3873:9;3884:6;3849:9;:42::i;:::-;3909:4;3902:11;;3746:175;;;;:::o;154:23:4:-;;;;;;;;;;;;;:::o;3984:151:1:-;4073:7;4100:11;:18;4112:5;4100:18;;;;;;;;;;;;;;;:27;4119:7;4100:27;;;;;;;;;;;;;;;;4093:34;;3984:151;;;;:::o;601:98:0:-;654:7;681:10;674:17;;601:98;:::o;9838:346:1:-;9957:1;9940:19;;:5;:19;;;;9932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10038:1;10019:21;;:7;:21;;;;10011:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10122:6;10092:11;:18;10104:5;10092:18;;;;;;;;;;;;;;;:27;10111:7;10092:27;;;;;;;;;;;;;;;:36;;;;10160:7;10144:32;;10153:5;10144:32;;;10169:6;10144:32;;;;;;:::i;:::-;;;;;;;;9838:346;;;:::o;7349:604::-;7473:1;7455:20;;:6;:20;;;;7447:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7557:1;7536:23;;:9;:23;;;;7528:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7612:47;7633:6;7641:9;7652:6;7612:20;:47::i;:::-;7672:21;7696:9;:17;7706:6;7696:17;;;;;;;;;;;;;;;;7672:41;;7749:6;7732:13;:23;;7724:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7845:6;7829:13;:22;;;;:::i;:::-;7809:9;:17;7819:6;7809:17;;;;;;;;;;;;;;;:42;;;;7886:6;7862:9;:20;7872:9;7862:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7927:9;7910:35;;7919:6;7910:35;;;7938:6;7910:35;;;;;;:::i;:::-;;;;;;;;7349:604;;;;:::o;10787:92::-;;;;:::o;7:139:5:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:366::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:4;3252:2;3247:3;3243:12;3236:26;3288:2;3283:3;3279:12;3272:19;;3077:220;;;:::o;3303:370::-;;3466:67;3530:2;3525:3;3466:67;:::i;:::-;3459:74;;3563:34;3559:1;3554:3;3550:11;3543:55;3629:8;3624:2;3619:3;3615:12;3608:30;3664:2;3659:3;3655:12;3648:19;;3449:224;;;:::o;3679:372::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:10;4000:2;3995:3;3991:12;3984:32;4042:2;4037:3;4033:12;4026:19;;3825:226;;;:::o;4057:369::-;;4220:67;4284:2;4279:3;4220:67;:::i;:::-;4213:74;;4317:34;4313:1;4308:3;4304:11;4297:55;4383:7;4378:2;4373:3;4369:12;4362:29;4417:2;4412:3;4408:12;4401:19;;4203:223;;;:::o;4432:368::-;;4595:67;4659:2;4654:3;4595:67;:::i;:::-;4588:74;;4692:34;4688:1;4683:3;4679:11;4672:55;4758:6;4753:2;4748:3;4744:12;4737:28;4791:2;4786:3;4782:12;4775:19;;4578:222;;;:::o;4806:369::-;;4969:67;5033:2;5028:3;4969:67;:::i;:::-;4962:74;;5066:34;5062:1;5057:3;5053:11;5046:55;5132:7;5127:2;5122:3;5118:12;5111:29;5166:2;5161:3;5157:12;5150:19;;4952:223;;;:::o;5181:118::-;5268:24;5286:5;5268:24;:::i;:::-;5263:3;5256:37;5246:53;;:::o;5305:112::-;5388:22;5404:5;5388:22;:::i;:::-;5383:3;5376:35;5366:51;;:::o;5423:222::-;;5554:2;5543:9;5539:18;5531:26;;5567:71;5635:1;5624:9;5620:17;5611:6;5567:71;:::i;:::-;5521:124;;;;:::o;5651:210::-;;5776:2;5765:9;5761:18;5753:26;;5789:65;5851:1;5840:9;5836:17;5827:6;5789:65;:::i;:::-;5743:118;;;;:::o;5867:313::-;;6018:2;6007:9;6003:18;5995:26;;6067:9;6061:4;6057:20;6053:1;6042:9;6038:17;6031:47;6095:78;6168:4;6159:6;6095:78;:::i;:::-;6087:86;;5985:195;;;;:::o;6186:419::-;;6390:2;6379:9;6375:18;6367:26;;6439:9;6433:4;6429:20;6425:1;6414:9;6410:17;6403:47;6467:131;6593:4;6467:131;:::i;:::-;6459:139;;6357:248;;;:::o;6611:419::-;;6815:2;6804:9;6800:18;6792:26;;6864:9;6858:4;6854:20;6850:1;6839:9;6835:17;6828:47;6892:131;7018:4;6892:131;:::i;:::-;6884:139;;6782:248;;;:::o;7036:419::-;;7240:2;7229:9;7225:18;7217:26;;7289:9;7283:4;7279:20;7275:1;7264:9;7260:17;7253:47;7317:131;7443:4;7317:131;:::i;:::-;7309:139;;7207:248;;;:::o;7461:419::-;;7665:2;7654:9;7650:18;7642:26;;7714:9;7708:4;7704:20;7700:1;7689:9;7685:17;7678:47;7742:131;7868:4;7742:131;:::i;:::-;7734:139;;7632:248;;;:::o;7886:419::-;;8090:2;8079:9;8075:18;8067:26;;8139:9;8133:4;8129:20;8125:1;8114:9;8110:17;8103:47;8167:131;8293:4;8167:131;:::i;:::-;8159:139;;8057:248;;;:::o;8311:419::-;;8515:2;8504:9;8500:18;8492:26;;8564:9;8558:4;8554:20;8550:1;8539:9;8535:17;8528:47;8592:131;8718:4;8592:131;:::i;:::-;8584:139;;8482:248;;;:::o;8736:419::-;;8940:2;8929:9;8925:18;8917:26;;8989:9;8983:4;8979:20;8975:1;8964:9;8960:17;8953:47;9017:131;9143:4;9017:131;:::i;:::-;9009:139;;8907:248;;;:::o;9161:222::-;;9292:2;9281:9;9277:18;9269:26;;9305:71;9373:1;9362:9;9358:17;9349:6;9305:71;:::i;:::-;9259:124;;;;:::o;9389:214::-;;9516:2;9505:9;9501:18;9493:26;;9529:67;9593:1;9582:9;9578:17;9569:6;9529:67;:::i;:::-;9483:120;;;;:::o;9609:99::-;;9695:5;9689:12;9679:22;;9668:40;;;:::o;9714:169::-;;9832:6;9827:3;9820:19;9872:4;9867:3;9863:14;9848:29;;9810:73;;;;:::o;9889:305::-;;9948:20;9966:1;9948:20;:::i;:::-;9943:25;;9982:20;10000:1;9982:20;:::i;:::-;9977:25;;10136:1;10068:66;10064:74;10061:1;10058:81;10055:2;;;10142:18;;:::i;:::-;10055:2;10186:1;10183;10179:9;10172:16;;9933:261;;;;:::o;10200:191::-;;10260:20;10278:1;10260:20;:::i;:::-;10255:25;;10294:20;10312:1;10294:20;:::i;:::-;10289:25;;10333:1;10330;10327:8;10324:2;;;10338:18;;:::i;:::-;10324:2;10383:1;10380;10376:9;10368:17;;10245:146;;;;:::o;10397:96::-;;10463:24;10481:5;10463:24;:::i;:::-;10452:35;;10442:51;;;:::o;10499:90::-;;10576:5;10569:13;10562:21;10551:32;;10541:48;;;:::o;10595:126::-;;10672:42;10665:5;10661:54;10650:65;;10640:81;;;:::o;10727:77::-;;10793:5;10782:16;;10772:32;;;:::o;10810:86::-;;10885:4;10878:5;10874:16;10863:27;;10853:43;;;:::o;10902:307::-;10970:1;10980:113;10994:6;10991:1;10988:13;10980:113;;;11079:1;11074:3;11070:11;11064:18;11060:1;11055:3;11051:11;11044:39;11016:2;11013:1;11009:10;11004:15;;10980:113;;;11111:6;11108:1;11105:13;11102:2;;;11191:1;11182:6;11177:3;11173:16;11166:27;11102:2;10951:258;;;;:::o;11215:320::-;;11296:1;11290:4;11286:12;11276:22;;11343:1;11337:4;11333:12;11364:18;11354:2;;11420:4;11412:6;11408:17;11398:27;;11354:2;11482;11474:6;11471:14;11451:18;11448:38;11445:2;;;11501:18;;:::i;:::-;11445:2;11266:269;;;;:::o;11541:180::-;11589:77;11586:1;11579:88;11686:4;11683:1;11676:15;11710:4;11707:1;11700:15;11727:180;11775:77;11772:1;11765:88;11872:4;11869:1;11862:15;11896:4;11893:1;11886:15;11913:102;;12005:2;12001:7;11996:2;11989:5;11985:14;11981:28;11971:38;;11961:54;;;:::o;12021:122::-;12094:24;12112:5;12094:24;:::i;:::-;12087:5;12084:35;12074:2;;12133:1;12130;12123:12;12074:2;12064:79;:::o;12149:122::-;12222:24;12240:5;12222:24;:::i;:::-;12215:5;12212:35;12202:2;;12261:1;12258;12251:12;12202:2;12192:79;:::o

Swarm Source

ipfs://3d7f2b12f4a4ee9990527bbf931f77a5e66fc6448b9781fc572c696cf288cb8b
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.