ETH Price: $3,141.91 (+0.94%)
Gas: 1.6 Gwei
 

Overview

Max Total Supply

1,000,000 SKR

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 SKR

Value
$0.00
0x2bfe6ead7c287edbe55d58fde6953528b9ce57c0
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:
SakuraToken

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 6 of 6: Sakura.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

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


contract SakuraToken is ERC20, Ownable{
    
    address public deployer;
    constructor() ERC20("sakuratoken.finance", "SKR" ) {
        _mint(msg.sender, 1000000 * (10 ** uint256(18)));
        deployer = msg.sender;
    } 
    
    function mint(address recever, uint256 numberToMint) public onlyOwner{
        _mint(recever, numberToMint);
    }
}

File 1 of 6: 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 6: 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 6: 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 6: 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);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"recever","type":"address"},{"internalType":"uint256","name":"numberToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f73616b757261746f6b656e2e66696e616e6365000000000000000000000000008152506040518060400160405280600381526020017f534b5200000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200034d565b508060049080519060200190620000af9291906200034d565b5050506000620000c4620001db60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000194336012600a62000178919062000558565b620f424062000188919062000695565b620001e360201b60201c565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620007a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d9062000450565b60405180910390fd5b6200026a600083836200034860201b60201c565b80600260008282546200027e9190620004a0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d59190620004a0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c919062000472565b60405180910390a35050565b505050565b8280546200035b9062000700565b90600052602060002090601f0160209004810192826200037f5760008555620003cb565b82601f106200039a57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003ca578251825591602001919060010190620003ad565b5b509050620003da9190620003de565b5090565b5b80821115620003f9576000816000905550600101620003df565b5090565b60006200040c601f836200048f565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200044a81620006f6565b82525050565b600060208201905081810360008301526200046b81620003fd565b9050919050565b60006020820190506200048960008301846200043f565b92915050565b600082825260208201905092915050565b6000620004ad82620006f6565b9150620004ba83620006f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f257620004f162000736565b5b828201905092915050565b6000808291508390505b60018511156200054f5780860481111562000527576200052662000736565b5b6001851615620005375780820291505b8081029050620005478562000794565b945062000507565b94509492505050565b60006200056582620006f6565b91506200057283620006f6565b9250620005a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005a9565b905092915050565b600082620005bb57600190506200068e565b81620005cb57600090506200068e565b8160018114620005e45760028114620005ef5762000625565b60019150506200068e565b60ff84111562000604576200060362000736565b5b8360020a9150848211156200061e576200061d62000736565b5b506200068e565b5060208310610133831016604e8410600b84101617156200065f5782820a90508381111562000659576200065862000736565b5b6200068e565b6200066e8484846001620004fd565b9250905081840481111562000688576200068762000736565b5b81810290505b9392505050565b6000620006a282620006f6565b9150620006af83620006f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006eb57620006ea62000736565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200071957607f821691505b6020821081141562000730576200072f62000765565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611adc80620007b16000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063d5f39488146102e1578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611711565b60405180910390f35b61013d6004803603810190610138919061127a565b6103dd565b60405161014a91906116f6565b60405180910390f35b61015b6103fb565b6040516101689190611873565b60405180910390f35b61018b6004803603810190610186919061122b565b610405565b60405161019891906116f6565b60405180910390f35b6101a9610506565b6040516101b6919061188e565b60405180910390f35b6101d960048036038101906101d4919061127a565b61050f565b6040516101e691906116f6565b60405180910390f35b6102096004803603810190610204919061127a565b6105bb565b005b610225600480360381019061022091906111c6565b610645565b6040516102329190611873565b60405180910390f35b61024361068d565b005b61024d6107ca565b60405161025a91906116db565b60405180910390f35b61026b6107f4565b6040516102789190611711565b60405180910390f35b61029b6004803603810190610296919061127a565b610886565b6040516102a891906116f6565b60405180910390f35b6102cb60048036038101906102c6919061127a565b61097a565b6040516102d891906116f6565b60405180910390f35b6102e9610998565b6040516102f691906116db565b60405180910390f35b610319600480360381019061031491906111ef565b6109be565b6040516103269190611873565b60405180910390f35b610349600480360381019061034491906111c6565b610a45565b005b60606003805461035a906119d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906119d7565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610bf1565b8484610bf9565b6001905092915050565b6000600254905090565b6000610412848484610dc4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d4906117b3565b60405180910390fd5b6104fa856104e9610bf1565b85846104f5919061191b565b610bf9565b60019150509392505050565b60006012905090565b60006105b161051c610bf1565b84846001600061052a610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ac91906118c5565b610bf9565b6001905092915050565b6105c3610bf1565b73ffffffffffffffffffffffffffffffffffffffff166105e16107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e906117d3565b60405180910390fd5b6106418282611043565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610695610bf1565b73ffffffffffffffffffffffffffffffffffffffff166106b36107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610700906117d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610803906119d7565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906119d7565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b60008060016000610895610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990611833565b60405180910390fd5b61096f61095d610bf1565b85858461096a919061191b565b610bf9565b600191505092915050565b600061098e610987610bf1565b8484610dc4565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4d610bf1565b73ffffffffffffffffffffffffffffffffffffffff16610a6b6107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906117d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890611753565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090611813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611773565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db79190611873565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906117f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90611733565b60405180910390fd5b610eaf838383611197565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90611793565b60405180910390fd5b8181610f41919061191b565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd191906118c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110359190611873565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90611853565b60405180910390fd5b6110bf60008383611197565b80600260008282546110d191906118c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112691906118c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161118b9190611873565b60405180910390a35050565b505050565b6000813590506111ab81611a78565b92915050565b6000813590506111c081611a8f565b92915050565b6000602082840312156111d857600080fd5b60006111e68482850161119c565b91505092915050565b6000806040838503121561120257600080fd5b60006112108582860161119c565b92505060206112218582860161119c565b9150509250929050565b60008060006060848603121561124057600080fd5b600061124e8682870161119c565b935050602061125f8682870161119c565b9250506040611270868287016111b1565b9150509250925092565b6000806040838503121561128d57600080fd5b600061129b8582860161119c565b92505060206112ac858286016111b1565b9150509250929050565b6112bf8161194f565b82525050565b6112ce81611961565b82525050565b60006112df826118a9565b6112e981856118b4565b93506112f98185602086016119a4565b61130281611a67565b840191505092915050565b600061131a6023836118b4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113806026836118b4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113e66022836118b4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061144c6026836118b4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114b26028836118b4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115186020836118b4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115586025836118b4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115be6024836118b4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116246025836118b4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168a601f836118b4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6116c68161198d565b82525050565b6116d581611997565b82525050565b60006020820190506116f060008301846112b6565b92915050565b600060208201905061170b60008301846112c5565b92915050565b6000602082019050818103600083015261172b81846112d4565b905092915050565b6000602082019050818103600083015261174c8161130d565b9050919050565b6000602082019050818103600083015261176c81611373565b9050919050565b6000602082019050818103600083015261178c816113d9565b9050919050565b600060208201905081810360008301526117ac8161143f565b9050919050565b600060208201905081810360008301526117cc816114a5565b9050919050565b600060208201905081810360008301526117ec8161150b565b9050919050565b6000602082019050818103600083015261180c8161154b565b9050919050565b6000602082019050818103600083015261182c816115b1565b9050919050565b6000602082019050818103600083015261184c81611617565b9050919050565b6000602082019050818103600083015261186c8161167d565b9050919050565b600060208201905061188860008301846116bd565b92915050565b60006020820190506118a360008301846116cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118d08261198d565b91506118db8361198d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119105761190f611a09565b5b828201905092915050565b60006119268261198d565b91506119318361198d565b92508282101561194457611943611a09565b5b828203905092915050565b600061195a8261196d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119c25780820151818401526020810190506119a7565b838111156119d1576000848401525b50505050565b600060028204905060018216806119ef57607f821691505b60208210811415611a0357611a02611a38565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a818161194f565b8114611a8c57600080fd5b50565b611a988161198d565b8114611aa357600080fd5b5056fea2646970667358221220359c809e57a4ce0132a87e21d3861d08c2bc0e4ca30c1219669dcedc6c920eed64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063d5f39488146102e1578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611711565b60405180910390f35b61013d6004803603810190610138919061127a565b6103dd565b60405161014a91906116f6565b60405180910390f35b61015b6103fb565b6040516101689190611873565b60405180910390f35b61018b6004803603810190610186919061122b565b610405565b60405161019891906116f6565b60405180910390f35b6101a9610506565b6040516101b6919061188e565b60405180910390f35b6101d960048036038101906101d4919061127a565b61050f565b6040516101e691906116f6565b60405180910390f35b6102096004803603810190610204919061127a565b6105bb565b005b610225600480360381019061022091906111c6565b610645565b6040516102329190611873565b60405180910390f35b61024361068d565b005b61024d6107ca565b60405161025a91906116db565b60405180910390f35b61026b6107f4565b6040516102789190611711565b60405180910390f35b61029b6004803603810190610296919061127a565b610886565b6040516102a891906116f6565b60405180910390f35b6102cb60048036038101906102c6919061127a565b61097a565b6040516102d891906116f6565b60405180910390f35b6102e9610998565b6040516102f691906116db565b60405180910390f35b610319600480360381019061031491906111ef565b6109be565b6040516103269190611873565b60405180910390f35b610349600480360381019061034491906111c6565b610a45565b005b60606003805461035a906119d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906119d7565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610bf1565b8484610bf9565b6001905092915050565b6000600254905090565b6000610412848484610dc4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d4906117b3565b60405180910390fd5b6104fa856104e9610bf1565b85846104f5919061191b565b610bf9565b60019150509392505050565b60006012905090565b60006105b161051c610bf1565b84846001600061052a610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ac91906118c5565b610bf9565b6001905092915050565b6105c3610bf1565b73ffffffffffffffffffffffffffffffffffffffff166105e16107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e906117d3565b60405180910390fd5b6106418282611043565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610695610bf1565b73ffffffffffffffffffffffffffffffffffffffff166106b36107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610700906117d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610803906119d7565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906119d7565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b60008060016000610895610bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990611833565b60405180910390fd5b61096f61095d610bf1565b85858461096a919061191b565b610bf9565b600191505092915050565b600061098e610987610bf1565b8484610dc4565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4d610bf1565b73ffffffffffffffffffffffffffffffffffffffff16610a6b6107ca565b73ffffffffffffffffffffffffffffffffffffffff1614610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906117d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890611753565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090611813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611773565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db79190611873565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906117f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90611733565b60405180910390fd5b610eaf838383611197565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90611793565b60405180910390fd5b8181610f41919061191b565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd191906118c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110359190611873565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90611853565b60405180910390fd5b6110bf60008383611197565b80600260008282546110d191906118c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112691906118c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161118b9190611873565b60405180910390a35050565b505050565b6000813590506111ab81611a78565b92915050565b6000813590506111c081611a8f565b92915050565b6000602082840312156111d857600080fd5b60006111e68482850161119c565b91505092915050565b6000806040838503121561120257600080fd5b60006112108582860161119c565b92505060206112218582860161119c565b9150509250929050565b60008060006060848603121561124057600080fd5b600061124e8682870161119c565b935050602061125f8682870161119c565b9250506040611270868287016111b1565b9150509250925092565b6000806040838503121561128d57600080fd5b600061129b8582860161119c565b92505060206112ac858286016111b1565b9150509250929050565b6112bf8161194f565b82525050565b6112ce81611961565b82525050565b60006112df826118a9565b6112e981856118b4565b93506112f98185602086016119a4565b61130281611a67565b840191505092915050565b600061131a6023836118b4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113806026836118b4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113e66022836118b4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061144c6026836118b4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114b26028836118b4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115186020836118b4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115586025836118b4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115be6024836118b4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116246025836118b4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168a601f836118b4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6116c68161198d565b82525050565b6116d581611997565b82525050565b60006020820190506116f060008301846112b6565b92915050565b600060208201905061170b60008301846112c5565b92915050565b6000602082019050818103600083015261172b81846112d4565b905092915050565b6000602082019050818103600083015261174c8161130d565b9050919050565b6000602082019050818103600083015261176c81611373565b9050919050565b6000602082019050818103600083015261178c816113d9565b9050919050565b600060208201905081810360008301526117ac8161143f565b9050919050565b600060208201905081810360008301526117cc816114a5565b9050919050565b600060208201905081810360008301526117ec8161150b565b9050919050565b6000602082019050818103600083015261180c8161154b565b9050919050565b6000602082019050818103600083015261182c816115b1565b9050919050565b6000602082019050818103600083015261184c81611617565b9050919050565b6000602082019050818103600083015261186c8161167d565b9050919050565b600060208201905061188860008301846116bd565b92915050565b60006020820190506118a360008301846116cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118d08261198d565b91506118db8361198d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119105761190f611a09565b5b828201905092915050565b60006119268261198d565b91506119318361198d565b92508282101561194457611943611a09565b5b828203905092915050565b600061195a8261196d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119c25780820151818401526020810190506119a7565b838111156119d1576000848401525b50505050565b600060028204905060018216806119ef57607f821691505b60208210811415611a0357611a02611a38565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a818161194f565b8114611a8c57600080fd5b50565b611a988161198d565b8114611aa357600080fd5b5056fea2646970667358221220359c809e57a4ce0132a87e21d3861d08c2bc0e4ca30c1219669dcedc6c920eed64736f6c63430008000033

Deployed Bytecode Sourcemap

137:363:5:-: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;:::-;;;;;;;;381:116:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3406:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:4;;;:::i;:::-;;1095:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2334:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6482:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3746:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;188:23:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3984:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2115:100:1;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;381:116:5:-;1326:12:4;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;461:28:5::1;467:7;476:12;461:5;:28::i;:::-;381:116:::0;;:::o;3406:127:1:-;3480:7;3507:9;:18;3517:7;3507:18;;;;;;;;;;;;;;;;3500:25;;3406:127;;;:::o;1746:148:4:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;1095:87::-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;2334:104:1:-;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;188:23:5:-;;;;;;;;;;;;;:::o;3984:151:1:-;4073:7;4100:11;:18;4112:5;4100:18;;;;;;;;;;;;;;;:27;4119:7;4100:27;;;;;;;;;;;;;;;;4093:34;;3984:151;;;;:::o;2049:244:4:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;;;2130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::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;8235:338::-;8338:1;8319:21;;:7;:21;;;;8311:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8389:49;8418:1;8422:7;8431:6;8389:20;:49::i;:::-;8467:6;8451:12;;:22;;;;;;;:::i;:::-;;;;;;;;8506:6;8484:9;:18;8494:7;8484:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8549:7;8528:37;;8545:1;8528:37;;;8558:6;8528:37;;;;;;:::i;:::-;;;;;;;;8235:338;;:::o;10787:92::-;;;;:::o;7:139:6:-;;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:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:370::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:8;4000:2;3995:3;3991:12;3984:30;4040:2;4035:3;4031:12;4024:19;;3825:224;;;:::o;4055:372::-;;4218:67;4282:2;4277:3;4218:67;:::i;:::-;4211:74;;4315:34;4311:1;4306:3;4302:11;4295:55;4381:10;4376:2;4371:3;4367:12;4360:32;4418:2;4413:3;4409:12;4402:19;;4201:226;;;:::o;4433:330::-;;4596:67;4660:2;4655:3;4596:67;:::i;:::-;4589:74;;4693:34;4689:1;4684:3;4680:11;4673:55;4754:2;4749:3;4745:12;4738:19;;4579:184;;;:::o;4769:369::-;;4932:67;4996:2;4991:3;4932:67;:::i;:::-;4925:74;;5029:34;5025:1;5020:3;5016:11;5009:55;5095:7;5090:2;5085:3;5081:12;5074:29;5129:2;5124:3;5120:12;5113:19;;4915:223;;;:::o;5144:368::-;;5307:67;5371:2;5366:3;5307:67;:::i;:::-;5300:74;;5404:34;5400:1;5395:3;5391:11;5384:55;5470:6;5465:2;5460:3;5456:12;5449:28;5503:2;5498:3;5494:12;5487:19;;5290:222;;;:::o;5518:369::-;;5681:67;5745:2;5740:3;5681:67;:::i;:::-;5674:74;;5778:34;5774:1;5769:3;5765:11;5758:55;5844:7;5839:2;5834:3;5830:12;5823:29;5878:2;5873:3;5869:12;5862:19;;5664:223;;;:::o;5893:329::-;;6056:67;6120:2;6115:3;6056:67;:::i;:::-;6049:74;;6153:33;6149:1;6144:3;6140:11;6133:54;6213:2;6208:3;6204:12;6197:19;;6039:183;;;:::o;6228:118::-;6315:24;6333:5;6315:24;:::i;:::-;6310:3;6303:37;6293:53;;:::o;6352:112::-;6435:22;6451:5;6435:22;:::i;:::-;6430:3;6423:35;6413:51;;:::o;6470:222::-;;6601:2;6590:9;6586:18;6578:26;;6614:71;6682:1;6671:9;6667:17;6658:6;6614:71;:::i;:::-;6568:124;;;;:::o;6698:210::-;;6823:2;6812:9;6808:18;6800:26;;6836:65;6898:1;6887:9;6883:17;6874:6;6836:65;:::i;:::-;6790:118;;;;:::o;6914:313::-;;7065:2;7054:9;7050:18;7042:26;;7114:9;7108:4;7104:20;7100:1;7089:9;7085:17;7078:47;7142:78;7215:4;7206:6;7142:78;:::i;:::-;7134:86;;7032:195;;;;:::o;7233:419::-;;7437:2;7426:9;7422:18;7414:26;;7486:9;7480:4;7476:20;7472:1;7461:9;7457:17;7450:47;7514:131;7640:4;7514:131;:::i;:::-;7506:139;;7404:248;;;:::o;7658:419::-;;7862:2;7851:9;7847:18;7839:26;;7911:9;7905:4;7901:20;7897:1;7886:9;7882:17;7875:47;7939:131;8065:4;7939:131;:::i;:::-;7931:139;;7829:248;;;:::o;8083:419::-;;8287:2;8276:9;8272:18;8264:26;;8336:9;8330:4;8326:20;8322:1;8311:9;8307:17;8300:47;8364:131;8490:4;8364:131;:::i;:::-;8356:139;;8254:248;;;:::o;8508:419::-;;8712:2;8701:9;8697:18;8689:26;;8761:9;8755:4;8751:20;8747:1;8736:9;8732:17;8725:47;8789:131;8915:4;8789:131;:::i;:::-;8781:139;;8679:248;;;:::o;8933:419::-;;9137:2;9126:9;9122:18;9114:26;;9186:9;9180:4;9176:20;9172:1;9161:9;9157:17;9150:47;9214:131;9340:4;9214:131;:::i;:::-;9206:139;;9104:248;;;:::o;9358:419::-;;9562:2;9551:9;9547:18;9539:26;;9611:9;9605:4;9601:20;9597:1;9586:9;9582:17;9575:47;9639:131;9765:4;9639:131;:::i;:::-;9631:139;;9529:248;;;:::o;9783:419::-;;9987:2;9976:9;9972:18;9964:26;;10036:9;10030:4;10026:20;10022:1;10011:9;10007:17;10000:47;10064:131;10190:4;10064:131;:::i;:::-;10056:139;;9954:248;;;:::o;10208:419::-;;10412:2;10401:9;10397:18;10389:26;;10461:9;10455:4;10451:20;10447:1;10436:9;10432:17;10425:47;10489:131;10615:4;10489:131;:::i;:::-;10481:139;;10379:248;;;:::o;10633:419::-;;10837:2;10826:9;10822:18;10814:26;;10886:9;10880:4;10876:20;10872:1;10861:9;10857:17;10850:47;10914:131;11040:4;10914:131;:::i;:::-;10906:139;;10804:248;;;:::o;11058:419::-;;11262:2;11251:9;11247:18;11239:26;;11311:9;11305:4;11301:20;11297:1;11286:9;11282:17;11275:47;11339:131;11465:4;11339:131;:::i;:::-;11331:139;;11229:248;;;:::o;11483:222::-;;11614:2;11603:9;11599:18;11591:26;;11627:71;11695:1;11684:9;11680:17;11671:6;11627:71;:::i;:::-;11581:124;;;;:::o;11711:214::-;;11838:2;11827:9;11823:18;11815:26;;11851:67;11915:1;11904:9;11900:17;11891:6;11851:67;:::i;:::-;11805:120;;;;:::o;11931:99::-;;12017:5;12011:12;12001:22;;11990:40;;;:::o;12036:169::-;;12154:6;12149:3;12142:19;12194:4;12189:3;12185:14;12170:29;;12132:73;;;;:::o;12211:305::-;;12270:20;12288:1;12270:20;:::i;:::-;12265:25;;12304:20;12322:1;12304:20;:::i;:::-;12299:25;;12458:1;12390:66;12386:74;12383:1;12380:81;12377:2;;;12464:18;;:::i;:::-;12377:2;12508:1;12505;12501:9;12494:16;;12255:261;;;;:::o;12522:191::-;;12582:20;12600:1;12582:20;:::i;:::-;12577:25;;12616:20;12634:1;12616:20;:::i;:::-;12611:25;;12655:1;12652;12649:8;12646:2;;;12660:18;;:::i;:::-;12646:2;12705:1;12702;12698:9;12690:17;;12567:146;;;;:::o;12719:96::-;;12785:24;12803:5;12785:24;:::i;:::-;12774:35;;12764:51;;;:::o;12821:90::-;;12898:5;12891:13;12884:21;12873:32;;12863:48;;;:::o;12917:126::-;;12994:42;12987:5;12983:54;12972:65;;12962:81;;;:::o;13049:77::-;;13115:5;13104:16;;13094:32;;;:::o;13132:86::-;;13207:4;13200:5;13196:16;13185:27;;13175:43;;;:::o;13224:307::-;13292:1;13302:113;13316:6;13313:1;13310:13;13302:113;;;13401:1;13396:3;13392:11;13386:18;13382:1;13377:3;13373:11;13366:39;13338:2;13335:1;13331:10;13326:15;;13302:113;;;13433:6;13430:1;13427:13;13424:2;;;13513:1;13504:6;13499:3;13495:16;13488:27;13424:2;13273:258;;;;:::o;13537:320::-;;13618:1;13612:4;13608:12;13598:22;;13665:1;13659:4;13655:12;13686:18;13676:2;;13742:4;13734:6;13730:17;13720:27;;13676:2;13804;13796:6;13793:14;13773:18;13770:38;13767:2;;;13823:18;;:::i;:::-;13767:2;13588:269;;;;:::o;13863:180::-;13911:77;13908:1;13901:88;14008:4;14005:1;13998:15;14032:4;14029:1;14022:15;14049:180;14097:77;14094:1;14087:88;14194:4;14191:1;14184:15;14218:4;14215:1;14208:15;14235:102;;14327:2;14323:7;14318:2;14311:5;14307:14;14303:28;14293:38;;14283:54;;;:::o;14343:122::-;14416:24;14434:5;14416:24;:::i;:::-;14409:5;14406:35;14396:2;;14455:1;14452;14445:12;14396:2;14386:79;:::o;14471:122::-;14544:24;14562:5;14544:24;:::i;:::-;14537:5;14534:35;14524:2;;14583:1;14580;14573:12;14524:2;14514:79;:::o

Swarm Source

ipfs://359c809e57a4ce0132a87e21d3861d08c2bc0e4ca30c1219669dcedc6c920eed
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.