ETH Price: $2,306.58 (-0.46%)

Token

MEXC Token (MEXC)
 

Overview

Max Total Supply

1,516,835,621.961381670952 MEXC

Holders

790 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
325.869120654397 MEXC

Value
$0.00
0x7Fe5657F89acc4E4592294b0D9120a292479E789
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MEXC is a utility token for the Emergency Medical Services (EMS) industry. We own 36 intellectual properties. MEXC is used to purchase our patented, and patent-pending equipment and solutions to save lives during the golden hour in any accidents or fatalities.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MEXCToken

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-29
*/

/**
 *
 * MIT License
 *
 * Copyright (c) 2019, MEXC Program Developers & OpenZeppelin Project.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
 * available, which can be aplied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 */
contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev 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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

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

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function removeMinter(address account) public onlyMinter {
        _removeMinter(account);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @dev Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(address account, uint256 amount) public {
        _burn(account, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

/**
 * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See `ERC20._mint`.
     *
     * Requirements:
     *
     * - the caller must have the `MinterRole`.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

/**
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    // function renounceOwnership() public onlyOwner {
    //     emit OwnershipTransferred(_owner, address(0));
    //     _owner = address(0);
    // }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract MEXCToken is ERC20Mintable, ERC20Burnable, ReentrancyGuard, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    string  public name      = "MEXC Token";
    string  public symbol    = "MEXC";
    uint8   public decimals  = 18;
    uint256 public maxSupply = 1714285714 ether;    // max allowable minting.

    bool    private _transferAllowed = true;        // allow/disallow transfer.

    mapping(address => bool) locked;                // locked addresses.

    modifier canTransfer() {
        if (msg.sender == owner()) {
            _;
        } else {
            require(_transferAllowed, "MEXC: transfer is not allowed");
            require(locked[msg.sender] == false, "MEXC: account is locked");
            _;
        }
    }
    
    event burnTokenEvent(address account, uint256 value);
    event lockAddressEvent(address account);
    event unlockAddressEvent(address account);
    event tokenIsRenamed(string symbol, string name);
    event supplyHasIncreased(uint256 newSupply);

    constructor() public {
    }

    /**
     * Allow the transfer of token to happen once listed on exchangers
     */
    function allowTransfers() onlyOwner public returns (bool) {
        _transferAllowed = true;
        return true;
    }

    /**
     * disallow the transfer
     */
    function disallowTransfers() onlyOwner public returns (bool) {
        _transferAllowed = false;
        return true;
    } 

    function isTransferAllowed() public view returns (bool) {
        return _transferAllowed;
    }

    /**
     * lock the address from any transfer
     */
    function lockAddress(address _addr) onlyOwner public {
        locked[_addr] = true;
        emit lockAddressEvent(_addr);
    }

    /**
     * lock the address from any transfer
     */
    function unlockAddress(address _addr) onlyOwner public {
        locked[_addr] = false;
        emit unlockAddressEvent(_addr);
    }

    /**
     * Check if the address is locked, or not
     */
    function isLocked(address _addr) public view returns (bool) {
        return locked[_addr];
    }

    /**
     * Rename the token to new name, and symbol
     */
    function renameToken(string memory _symbol, string memory _name) onlyOwner public {
        symbol = _symbol;
        name = _name;
        emit tokenIsRenamed(_symbol, _name);
    }

    /**
     * Increase the max supply
     */
    function increaseSupply(uint256 supply) onlyOwner public returns (bool) {
        maxSupply = maxSupply.add(supply);
        emit supplyHasIncreased(maxSupply);
        return true;
    }

    /**
     * Mint the token to new owner
     */
    function mint(address account, uint256 amount) 
            onlyMinter onlyOwner nonReentrant public returns (bool) {
        require(totalSupply().add(amount) <= maxSupply, "MEXC: exceeding the maxSupply amount");
        super.mint(account, amount);
        return true;
    }

    /**
     * Mint the token to new owner
     */
    function mintThenLock(address account, uint256 amount) 
            onlyMinter onlyOwner public returns (bool) {
        require(totalSupply().add(amount) <= maxSupply, "MEXC: exceeding the maxSupply amount");
        mint(account, amount);
        lockAddress(account);
        return true;
    }

    /**
     * Burn the amount in the address
     */
    function burn(address account, uint256 value) 
            onlyMinter onlyOwner nonReentrant public {
        super.burn(account, value);
        emit burnTokenEvent(account, value);
    }

    /**
     * @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) 
            canTransfer nonReentrant public returns (bool) {
        super.transfer(recipient, amount);
        return true;
    }

    /**
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) 
            canTransfer nonReentrant public returns (bool) {
        super.approve(spender, value);
        return true;
    }

    /**
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) 
            canTransfer nonReentrant public returns (bool) {
        super.transferFrom(sender, recipient, amount);
        return true;
    }

    /**
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) 
            canTransfer nonReentrant public returns (bool) {
        super.increaseAllowance(spender, addedValue);
        return true;
    }

    /**
     *
     * 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) 
            canTransfer nonReentrant public returns (bool) {
        super.decreaseAllowance(spender, subtractedValue);
        return true;
    }  

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        super.transferOwnership(newOwner);
        super.addMinter(newOwner);
        super.renounceMinter();
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disallowTransfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allowTransfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"lockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"}],"name":"renameToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unlockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"increaseSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintThenLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnTokenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"lockAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"unlockAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"tokenIsRenamed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"supplyHasIncreased","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"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"}]

60c0604052600a60808190527f4d45584320546f6b656e0000000000000000000000000000000000000000000060a0908152620000409160069190620002a9565b506040805180820190915260048082527f4d4558430000000000000000000000000000000000000000000000000000000060209092019182526200008791600791620002a9565b506008805460ff199081166012179091556b058a061ec4dc1559a7080000600955600a80549091166001179055348015620000c157600080fd5b50620000d6336001600160e01b036200012d16565b6001600455600580546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200034e565b620001488160036200017f60201b62001f031790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200019482826001600160e01b036200022616565b156200020157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b03821662000289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200261c6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ec57805160ff19168380011785556200031c565b828001600101855582156200031c579182015b828111156200031c578251825591602001919060010190620002ff565b506200032a9291506200032e565b5090565b6200034b91905b808211156200032a576000815560010162000335565b90565b6122be806200035e6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80638da5cb5b1161010f578063aa271e1a116100a2578063cd8c063b11610071578063cd8c063b146106eb578063d5abeb01146106f3578063dd62ed3e146106fb578063f2fde38b14610729576101e5565b8063aa271e1a14610656578063b7eb5e0a1461067c578063b921e163146106a2578063c4be6bb4146106bf576101e5565b806398650275116100de57806398650275146105ca5780639dc29fac146105d2578063a457c2d7146105fe578063a9059cbb1461062a576101e5565b80638da5cb5b146105705780638f32d59b1461059457806395d89b411461059c578063983b2d56146105a4576101e5565b8063313ce5671161018757806341cc89121161015657806341cc8912146103cb5780634a4fbeec146104f857806370a082311461051e57806379cc679014610544576101e5565b8063313ce5671461032f57806334a90d021461034d578063395093511461037357806340c10f191461039f576101e5565b8063212c8157116101c3578063212c8157146102c15780632185810b146102c957806323b872dd146102d15780633092afd514610307576101e5565b806306fdde03146101ea578063095ea7b31461026757806318160ddd146102a7575b600080fd5b6101f261074f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356107dd565b604080519115158252519081900360200190f35b6102af61096e565b60408051918252519081900360200190f35b610293610975565b6102936109ce565b610293600480360360608110156102e757600080fd5b506001600160a01b03813581169160208101359091169060400135610a2b565b61032d6004803603602081101561031d57600080fd5b50356001600160a01b0316610bbf565b005b610337610c0f565b6040805160ff9092168252519081900360200190f35b61032d6004803603602081101561036357600080fd5b50356001600160a01b0316610c18565b6102936004803603604081101561038957600080fd5b506001600160a01b038135169060200135610cba565b610293600480360360408110156103b557600080fd5b506001600160a01b038135169060200135610dab565b61032d600480360360408110156103e157600080fd5b8101906020810181356401000000008111156103fc57600080fd5b82018360208201111561040e57600080fd5b8035906020019184600183028401116401000000008311171561043057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561048357600080fd5b82018360208201111561049557600080fd5b803590602001918460018302840111640100000000831117156104b757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ea5945050505050565b6102936004803603602081101561050e57600080fd5b50356001600160a01b0316611018565b6102af6004803603602081101561053457600080fd5b50356001600160a01b0316611036565b61032d6004803603604081101561055a57600080fd5b506001600160a01b038135169060200135611051565b61057861105f565b604080516001600160a01b039092168252519081900360200190f35b61029361106e565b6101f261107f565b61032d600480360360208110156105ba57600080fd5b50356001600160a01b03166110da565b61032d611127565b61032d600480360360408110156105e857600080fd5b506001600160a01b038135169060200135611132565b6102936004803603604081101561061457600080fd5b506001600160a01b03813516906020013561125f565b6102936004803603604081101561064057600080fd5b506001600160a01b038135169060200135611350565b6102936004803603602081101561066c57600080fd5b50356001600160a01b0316611441565b61032d6004803603602081101561069257600080fd5b50356001600160a01b0316611454565b610293600480360360208110156106b857600080fd5b50356114f3565b610293600480360360408110156106d557600080fd5b506001600160a01b03813516906020013561158e565b610293611684565b6102af61168d565b6102af6004803603604081101561071157600080fd5b506001600160a01b0381358116916020013516611693565b61032d6004803603602081101561073f57600080fd5b50356001600160a01b03166116be565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b505050505081565b60006107e761105f565b6001600160a01b0316336001600160a01b03161415610864576004805460010190819055610815848461171f565b5060019150600454811461085e576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b50610968565b600a5460ff166108a9576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610908576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d848461171f565b50600191506004548114610966576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505b92915050565b6002545b90565b600061097f61106e565b6109be576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b50600a805460ff19169055600190565b60006109d861106e565b610a17576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b50600a805460ff1916600190811790915590565b6000610a3561105f565b6001600160a01b0316336001600160a01b03161415610ab3576004805460010190819055610a6485858561172c565b50600191506004548114610aad576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b50610bb8565b600a5460ff16610af8576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610b57576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610b6d85858561172c565b50600191506004548114610bb6576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505b9392505050565b610bc833611441565b610c035760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610c0c81611783565b50565b60085460ff1681565b610c2061106e565b610c5f576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f8a7c4419c95cb4931471e12f2ad5fb760abfc1389479f0e9a588c2dc98f2dceb9281900390910190a150565b6000610cc461105f565b6001600160a01b0316336001600160a01b03161415610cf257600480546001019081905561081584846117cb565b600a5460ff16610d37576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610d96576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d84846117cb565b6000610db633611441565b610df15760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610df961106e565b610e38576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6004805460010190819055600954610e5e84610e5261096e565b9063ffffffff61180716565b1115610e9b5760405162461bcd60e51b81526004018080602001828103825260248152602001806122666024913960400191505060405180910390fd5b61091d8484611861565b610ead61106e565b610eec576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b8151610eff906007906020850190612025565b508051610f13906006906020840190612025565b507fa5c92e86140feb7eb0bbbc3f7d785a90e1d168989b528ff22962e995f7ef21df8282604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015610f78578181015183820152602001610f60565b50505050905090810190601f168015610fa55780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015610fd8578181015183820152602001610fc0565b50505050905090810190601f1680156110055780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b61105b82826118b1565b5050565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d55780601f106107aa576101008083540402835291602001916107d5565b6110e333611441565b61111e5760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610c0c816118f6565b61113033611783565b565b61113b33611441565b6111765760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b61117e61106e565b6111bd576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60048054600101908190556111d2838361193e565b604080516001600160a01b03851681526020810184905281517f7c21cf5d524274e2d794116265284572dceb98c78e6f691aa7072e1925a29e03929181900390910190a1600454811461125a576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505050565b600061126961105f565b6001600160a01b0316336001600160a01b031614156112975760048054600101908190556108158484611948565b600a5460ff166112dc576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561133b576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d8484611948565b600061135a61105f565b6001600160a01b0316336001600160a01b031614156113885760048054600101908190556108158484611984565b600a5460ff166113cd576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561142c576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d8484611984565b600061096860038363ffffffff61199116565b61145c61106e565b61149b576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517fe097c69c634880f1c9ee76294a0c05b4b9b14becebfa150ded7979498f732e809281900390910190a150565b60006114fd61106e565b61153c576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60095461154f908363ffffffff61180716565b600981905560408051918252517f6af448a356e1211a28bdca85758a1e5df103f84609147923fef12d451bc61ab89181900360200190a1506001919050565b600061159933611441565b6115d45760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b6115dc61106e565b61161b576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60095461162a83610e5261096e565b11156116675760405162461bcd60e51b81526004018080602001828103825260248152602001806122666024913960400191505060405180910390fd5b6116718383610dab565b5061167b83610c18565b50600192915050565b600a5460ff1690565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116c661106e565b611705576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b61170e816119f8565b611717816110da565b610c0c611127565b600061167b338484611a48565b6000611739848484611b34565b6001600160a01b038416600090815260016020908152604080832033808552925290912054611779918691611774908663ffffffff611c7616565b611a48565b5060019392505050565b61179460038263ffffffff611cd316565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161167b918590611774908663ffffffff61180716565b600082820183811015610bb8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061186c33611441565b6118a75760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b61167b8383611d3a565b6118bb8282611e2a565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461105b918491611774908563ffffffff611c7616565b61190760038263ffffffff611f0316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61105b8282611e2a565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161167b918590611774908663ffffffff611c7616565b600061167b338484611b34565b60006001600160a01b0382166119d85760405162461bcd60e51b81526004018080602001828103825260228152602001806121da6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611a0061106e565b611a3f576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b610c0c81611f84565b6001600160a01b038316611a8d5760405162461bcd60e51b81526004018080602001828103825260248152602001806122426024913960400191505060405180910390fd5b6001600160a01b038216611ad25760405162461bcd60e51b81526004018080602001828103825260228152602001806121476022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b795760405162461bcd60e51b815260040180806020018281038252602581526020018061221d6025913960400191505060405180910390fd5b6001600160a01b038216611bbe5760405162461bcd60e51b81526004018080602001828103825260238152602001806120be6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611be7908263ffffffff611c7616565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c1c908263ffffffff61180716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611ccd576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611cdd8282611991565b611d185760405162461bcd60e51b81526004018080602001828103825260218152602001806121996021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b038216611d95576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611da8908263ffffffff61180716565b6002556001600160a01b038216600090815260208190526040902054611dd4908263ffffffff61180716565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611e6f5760405162461bcd60e51b81526004018080602001828103825260218152602001806121fc6021913960400191505060405180910390fd5b600254611e82908263ffffffff611c7616565b6002556001600160a01b038216600090815260208190526040902054611eae908263ffffffff611c7616565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b611f0d8282611991565b15611f5f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116611fc95760405162461bcd60e51b81526004018080602001828103825260268152602001806121216026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061206657805160ff1916838001178555612093565b82800160010185558215612093579182015b82811115612093578251825591602001919060010190612078565b5061209f9291506120a3565b5090565b61097291905b8082111561209f57600081556001016120a956fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c004d4558433a207472616e73666572206973206e6f7420616c6c6f7765640000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d4558433a20657863656564696e6720746865206d6178537570706c7920616d6f756e74a265627a7a72315820623f92e6cd9ddfb2d3de67447edb79950d19ffa3fa70292118d19f1bbc1c460064736f6c634300050b0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80638da5cb5b1161010f578063aa271e1a116100a2578063cd8c063b11610071578063cd8c063b146106eb578063d5abeb01146106f3578063dd62ed3e146106fb578063f2fde38b14610729576101e5565b8063aa271e1a14610656578063b7eb5e0a1461067c578063b921e163146106a2578063c4be6bb4146106bf576101e5565b806398650275116100de57806398650275146105ca5780639dc29fac146105d2578063a457c2d7146105fe578063a9059cbb1461062a576101e5565b80638da5cb5b146105705780638f32d59b1461059457806395d89b411461059c578063983b2d56146105a4576101e5565b8063313ce5671161018757806341cc89121161015657806341cc8912146103cb5780634a4fbeec146104f857806370a082311461051e57806379cc679014610544576101e5565b8063313ce5671461032f57806334a90d021461034d578063395093511461037357806340c10f191461039f576101e5565b8063212c8157116101c3578063212c8157146102c15780632185810b146102c957806323b872dd146102d15780633092afd514610307576101e5565b806306fdde03146101ea578063095ea7b31461026757806318160ddd146102a7575b600080fd5b6101f261074f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356107dd565b604080519115158252519081900360200190f35b6102af61096e565b60408051918252519081900360200190f35b610293610975565b6102936109ce565b610293600480360360608110156102e757600080fd5b506001600160a01b03813581169160208101359091169060400135610a2b565b61032d6004803603602081101561031d57600080fd5b50356001600160a01b0316610bbf565b005b610337610c0f565b6040805160ff9092168252519081900360200190f35b61032d6004803603602081101561036357600080fd5b50356001600160a01b0316610c18565b6102936004803603604081101561038957600080fd5b506001600160a01b038135169060200135610cba565b610293600480360360408110156103b557600080fd5b506001600160a01b038135169060200135610dab565b61032d600480360360408110156103e157600080fd5b8101906020810181356401000000008111156103fc57600080fd5b82018360208201111561040e57600080fd5b8035906020019184600183028401116401000000008311171561043057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561048357600080fd5b82018360208201111561049557600080fd5b803590602001918460018302840111640100000000831117156104b757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ea5945050505050565b6102936004803603602081101561050e57600080fd5b50356001600160a01b0316611018565b6102af6004803603602081101561053457600080fd5b50356001600160a01b0316611036565b61032d6004803603604081101561055a57600080fd5b506001600160a01b038135169060200135611051565b61057861105f565b604080516001600160a01b039092168252519081900360200190f35b61029361106e565b6101f261107f565b61032d600480360360208110156105ba57600080fd5b50356001600160a01b03166110da565b61032d611127565b61032d600480360360408110156105e857600080fd5b506001600160a01b038135169060200135611132565b6102936004803603604081101561061457600080fd5b506001600160a01b03813516906020013561125f565b6102936004803603604081101561064057600080fd5b506001600160a01b038135169060200135611350565b6102936004803603602081101561066c57600080fd5b50356001600160a01b0316611441565b61032d6004803603602081101561069257600080fd5b50356001600160a01b0316611454565b610293600480360360208110156106b857600080fd5b50356114f3565b610293600480360360408110156106d557600080fd5b506001600160a01b03813516906020013561158e565b610293611684565b6102af61168d565b6102af6004803603604081101561071157600080fd5b506001600160a01b0381358116916020013516611693565b61032d6004803603602081101561073f57600080fd5b50356001600160a01b03166116be565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b505050505081565b60006107e761105f565b6001600160a01b0316336001600160a01b03161415610864576004805460010190819055610815848461171f565b5060019150600454811461085e576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b50610968565b600a5460ff166108a9576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610908576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d848461171f565b50600191506004548114610966576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505b92915050565b6002545b90565b600061097f61106e565b6109be576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b50600a805460ff19169055600190565b60006109d861106e565b610a17576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b50600a805460ff1916600190811790915590565b6000610a3561105f565b6001600160a01b0316336001600160a01b03161415610ab3576004805460010190819055610a6485858561172c565b50600191506004548114610aad576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b50610bb8565b600a5460ff16610af8576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610b57576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610b6d85858561172c565b50600191506004548114610bb6576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505b9392505050565b610bc833611441565b610c035760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610c0c81611783565b50565b60085460ff1681565b610c2061106e565b610c5f576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f8a7c4419c95cb4931471e12f2ad5fb760abfc1389479f0e9a588c2dc98f2dceb9281900390910190a150565b6000610cc461105f565b6001600160a01b0316336001600160a01b03161415610cf257600480546001019081905561081584846117cb565b600a5460ff16610d37576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610d96576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d84846117cb565b6000610db633611441565b610df15760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610df961106e565b610e38576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6004805460010190819055600954610e5e84610e5261096e565b9063ffffffff61180716565b1115610e9b5760405162461bcd60e51b81526004018080602001828103825260248152602001806122666024913960400191505060405180910390fd5b61091d8484611861565b610ead61106e565b610eec576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b8151610eff906007906020850190612025565b508051610f13906006906020840190612025565b507fa5c92e86140feb7eb0bbbc3f7d785a90e1d168989b528ff22962e995f7ef21df8282604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015610f78578181015183820152602001610f60565b50505050905090810190601f168015610fa55780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015610fd8578181015183820152602001610fc0565b50505050905090810190601f1680156110055780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b61105b82826118b1565b5050565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d55780601f106107aa576101008083540402835291602001916107d5565b6110e333611441565b61111e5760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b610c0c816118f6565b61113033611783565b565b61113b33611441565b6111765760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b61117e61106e565b6111bd576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60048054600101908190556111d2838361193e565b604080516001600160a01b03851681526020810184905281517f7c21cf5d524274e2d794116265284572dceb98c78e6f691aa7072e1925a29e03929181900390910190a1600454811461125a576040805162461bcd60e51b815260206004820152601f60248201526000805160206120e1833981519152604482015290519081900360640190fd5b505050565b600061126961105f565b6001600160a01b0316336001600160a01b031614156112975760048054600101908190556108158484611948565b600a5460ff166112dc576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561133b576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d8484611948565b600061135a61105f565b6001600160a01b0316336001600160a01b031614156113885760048054600101908190556108158484611984565b600a5460ff166113cd576040805162461bcd60e51b815260206004820152601d6024820152600080516020612101833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561142c576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561091d8484611984565b600061096860038363ffffffff61199116565b61145c61106e565b61149b576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517fe097c69c634880f1c9ee76294a0c05b4b9b14becebfa150ded7979498f732e809281900390910190a150565b60006114fd61106e565b61153c576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60095461154f908363ffffffff61180716565b600981905560408051918252517f6af448a356e1211a28bdca85758a1e5df103f84609147923fef12d451bc61ab89181900360200190a1506001919050565b600061159933611441565b6115d45760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b6115dc61106e565b61161b576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b60095461162a83610e5261096e565b11156116675760405162461bcd60e51b81526004018080602001828103825260248152602001806122666024913960400191505060405180910390fd5b6116718383610dab565b5061167b83610c18565b50600192915050565b600a5460ff1690565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116c661106e565b611705576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b61170e816119f8565b611717816110da565b610c0c611127565b600061167b338484611a48565b6000611739848484611b34565b6001600160a01b038416600090815260016020908152604080832033808552925290912054611779918691611774908663ffffffff611c7616565b611a48565b5060019392505050565b61179460038263ffffffff611cd316565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161167b918590611774908663ffffffff61180716565b600082820183811015610bb8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061186c33611441565b6118a75760405162461bcd60e51b81526004018080602001828103825260308152602001806121696030913960400191505060405180910390fd5b61167b8383611d3a565b6118bb8282611e2a565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461105b918491611774908563ffffffff611c7616565b61190760038263ffffffff611f0316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61105b8282611e2a565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161167b918590611774908663ffffffff611c7616565b600061167b338484611b34565b60006001600160a01b0382166119d85760405162461bcd60e51b81526004018080602001828103825260228152602001806121da6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611a0061106e565b611a3f576040805162461bcd60e51b815260206004820181905260248201526000805160206121ba833981519152604482015290519081900360640190fd5b610c0c81611f84565b6001600160a01b038316611a8d5760405162461bcd60e51b81526004018080602001828103825260248152602001806122426024913960400191505060405180910390fd5b6001600160a01b038216611ad25760405162461bcd60e51b81526004018080602001828103825260228152602001806121476022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b795760405162461bcd60e51b815260040180806020018281038252602581526020018061221d6025913960400191505060405180910390fd5b6001600160a01b038216611bbe5760405162461bcd60e51b81526004018080602001828103825260238152602001806120be6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611be7908263ffffffff611c7616565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c1c908263ffffffff61180716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611ccd576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611cdd8282611991565b611d185760405162461bcd60e51b81526004018080602001828103825260218152602001806121996021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b038216611d95576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611da8908263ffffffff61180716565b6002556001600160a01b038216600090815260208190526040902054611dd4908263ffffffff61180716565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611e6f5760405162461bcd60e51b81526004018080602001828103825260218152602001806121fc6021913960400191505060405180910390fd5b600254611e82908263ffffffff611c7616565b6002556001600160a01b038216600090815260208190526040902054611eae908263ffffffff611c7616565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b611f0d8282611991565b15611f5f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116611fc95760405162461bcd60e51b81526004018080602001828103825260268152602001806121216026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061206657805160ff1916838001178555612093565b82800160010185558215612093579182015b82811115612093578251825591602001919060010190612078565b5061209f9291506120a3565b5090565b61097291905b8082111561209f57600081556001016120a956fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c004d4558433a207472616e73666572206973206e6f7420616c6c6f7765640000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d4558433a20657863656564696e6720746865206d6178537570706c7920616d6f756e74a265627a7a72315820623f92e6cd9ddfb2d3de67447edb79950d19ffa3fa70292118d19f1bbc1c460064736f6c634300050b0032

Deployed Bytecode Sourcemap

27360:6021:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27360:6021:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27512:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27512:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31494:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31494:180:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10573:91;;;:::i;:::-;;;;;;;;;;;;;;;;28732:126;;;:::i;28554:122::-;;;:::i;31916:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31916:220:0;;;;;;;;;;;;;;;;;:::i;18770:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18770:98:0;-1:-1:-1;;;;;18770:98:0;;:::i;:::-;;27598:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29034:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29034:131:0;-1:-1:-1;;;;;29034:131:0;;:::i;32324:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32324:210:0;;;;;;;;:::i;30114:283::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30114:283:0;;;;;;;;:::i;29617:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29617:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;29617:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29617:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29617:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29617:186:0;;;;;;;;-1:-1:-1;29617:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;29617:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29617:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29617:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29617:186:0;;-1:-1:-1;29617:186:0;;-1:-1:-1;;;;;29617:186:0:i;29443:99::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29443:99:0;-1:-1:-1;;;;;29443:99:0;;:::i;10727:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10727:110:0;-1:-1:-1;;;;;10727:110:0;;:::i;19660:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19660:103:0;;;;;;;;:::i;21158:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21158:79:0;;;;;;;;;;;;;;21524:92;;;:::i;27558:33::-;;;:::i;18585:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18585:92:0;-1:-1:-1;;;;;18585:92:0;;:::i;18685:77::-;;;:::i;30827:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30827:192:0;;;;;;;;:::i;32816:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32816:220:0;;;;;;;;:::i;31232:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31232:188:0;;;;;;;;:::i;18468:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18468:109:0;-1:-1:-1;;;;;18468:109:0;;:::i;29234:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29234:136:0;-1:-1:-1;;;;;29234:136:0;;:::i;29861:191::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29861:191:0;;:::i;30459:303::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30459:303:0;;;;;;;;:::i;28867:98::-;;;:::i;27634:43::-;;;:::i;11269:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11269:134:0;;;;;;;;;;:::i;33193:183::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33193:183:0;-1:-1:-1;;;;;33193:183:0;;:::i;27512:39::-;;;;;;;;;;;;;;;-1:-1:-1;;27512:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31494:180::-;31598:4;27926:7;:5;:7::i;:::-;-1:-1:-1;;;;;27912:21:0;:10;-1:-1:-1;;;;;27912:21:0;;27908:240;;;6146:13;:18;;6163:1;6146:18;;;;;31615:29;31629:7;31638:5;31615:13;:29::i;:::-;;31662:4;31655:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;27950:1;27908:240;;;27992:16;;;;27984:58;;;;;-1:-1:-1;;;27984:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27984:58:0;;;;;;;;;;;;;;;28072:10;28065:18;;;;:6;:18;;;;;;;;:27;28057:63;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;31615:29;31629:7;31638:5;31615:13;:29::i;:::-;;31662:4;31655:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;28135:1;27908:240;31494:180;;;;:::o;10573:91::-;10644:12;;10573:91;;:::o;28732:126::-;28787:4;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;-1:-1:-1;28804:16:0;:24;;-1:-1:-1;;28804:24:0;;;;28732:126;:::o;28554:122::-;28606:4;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;-1:-1:-1;28623:16:0;:23;;-1:-1:-1;;28623:23:0;28642:4;28623:23;;;;;;28554:122;:::o;31916:220::-;32044:4;27926:7;:5;:7::i;:::-;-1:-1:-1;;;;;27912:21:0;:10;-1:-1:-1;;;;;27912:21:0;;27908:240;;;6146:13;:18;;6163:1;6146:18;;;;;32061:45;32080:6;32088:9;32099:6;32061:18;:45::i;:::-;;32124:4;32117:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;27950:1;27908:240;;;27992:16;;;;27984:58;;;;;-1:-1:-1;;;27984:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27984:58:0;;;;;;;;;;;;;;;28072:10;28065:18;;;;:6;:18;;;;;;;;:27;28057:63;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;32061:45;32080:6;32088:9;32099:6;32061:18;:45::i;:::-;;32124:4;32117:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;28135:1;27908:240;31916:220;;;;;:::o;18770:98::-;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18838:22;18852:7;18838:13;:22::i;:::-;18770:98;:::o;27598:29::-;;;;;;:::o;29034:131::-;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29098:13:0;;;;;;:6;:13;;;;;;;;;:20;;-1:-1:-1;;29098:20:0;29114:4;29098:20;;;29134:23;;;;;;;;;;;;;;;;;29034:131;:::o;32324:210::-;32443:4;27926:7;:5;:7::i;:::-;-1:-1:-1;;;;;27912:21:0;:10;-1:-1:-1;;;;;27912:21:0;;27908:240;;;6146:13;:18;;6163:1;6146:18;;;;;32460:44;32484:7;32493:10;32460:23;:44::i;27908:240::-;27992:16;;;;27984:58;;;;;-1:-1:-1;;;27984:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27984:58:0;;;;;;;;;;;;;;;28072:10;28065:18;;;;:6;:18;;;;;;;;:27;28057:63;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;32460:44;32484:7;32493:10;32460:23;:44::i;30114:283::-;30225:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;30279:9;;30250:25;30268:6;30250:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:38;;30242:87;;;;-1:-1:-1;;;30242:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30340:27;30351:7;30360:6;30340:10;:27::i;29617:186::-;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;29710:16;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;29737:12:0;;;;:4;;:12;;;;;:::i;:::-;;29765:30;29780:7;29789:5;29765:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29765:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29765:30:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29765:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29617:186;;:::o;29443:99::-;-1:-1:-1;;;;;29521:13:0;29497:4;29521:13;;;:6;:13;;;;;;;;;29443:99::o;10727:110::-;-1:-1:-1;;;;;10811:18:0;10784:7;10811:18;;;;;;;;;;;;10727:110::o;19660:103::-;19729:26;19739:7;19748:6;19729:9;:26::i;:::-;19660:103;;:::o;21158:79::-;21223:6;;-1:-1:-1;;;;;21223:6:0;21158:79;:::o;21524:92::-;21602:6;;-1:-1:-1;;;;;21602:6:0;21588:10;:20;;21524:92::o;27558:33::-;;;;;;;;;;;;;;;-1:-1:-1;;27558:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18585:92;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18650:19;18661:7;18650:10;:19::i;18685:77::-;18729:25;18743:10;18729:13;:25::i;:::-;18685:77::o;30827:192::-;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;30939:26;30950:7;30959:5;30939:10;:26::i;:::-;30981:30;;;-1:-1:-1;;;;;30981:30:0;;;;;;;;;;;;;;;;;;;;;;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;21427:1;30827:192;;:::o;32816:220::-;32940:4;27926:7;:5;:7::i;:::-;-1:-1:-1;;;;;27912:21:0;:10;-1:-1:-1;;;;;27912:21:0;;27908:240;;;6146:13;:18;;6163:1;6146:18;;;;;32957:49;32981:7;32990:15;32957:23;:49::i;27908:240::-;27992:16;;;;27984:58;;;;;-1:-1:-1;;;27984:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27984:58:0;;;;;;;;;;;;;;;28072:10;28065:18;;;;:6;:18;;;;;;;;:27;28057:63;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;32957:49;32981:7;32990:15;32957:23;:49::i;31232:188::-;31340:4;27926:7;:5;:7::i;:::-;-1:-1:-1;;;;;27912:21:0;:10;-1:-1:-1;;;;;27912:21:0;;27908:240;;;6146:13;:18;;6163:1;6146:18;;;;;31357:33;31372:9;31383:6;31357:14;:33::i;27908:240::-;27992:16;;;;27984:58;;;;;-1:-1:-1;;;27984:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27984:58:0;;;;;;;;;;;;;;;28072:10;28065:18;;;;:6;:18;;;;;;;;:27;28057:63;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;-1:-1:-1;;;28057:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;31357:33;31372:9;31383:6;31357:14;:33::i;18468:109::-;18524:4;18548:21;:8;18561:7;18548:21;:12;:21;:::i;29234:136::-;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29300:13:0;;29316:5;29300:13;;;:6;:13;;;;;;;;;:21;;-1:-1:-1;;29300:21:0;;;29337:25;;;;;;;;;;;;;;;;;29234:136;:::o;29861:191::-;29927:4;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;29956:9;;:21;;29970:6;29956:21;:13;:21;:::i;:::-;29944:9;:33;;;29993:29;;;;;;;;;;;;;;;;-1:-1:-1;30040:4:0;29861:191;;;:::o;30459:303::-;30565:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;30619:9;;30590:25;30608:6;30590:13;:11;:13::i;:25::-;:38;;30582:87;;;;-1:-1:-1;;;30582:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30680:21;30685:7;30694:6;30680:4;:21::i;:::-;;30712:20;30724:7;30712:11;:20::i;:::-;-1:-1:-1;30750:4:0;30459:303;;;;:::o;28867:98::-;28941:16;;;;28867:98;:::o;27634:43::-;;;;:::o;11269:134::-;-1:-1:-1;;;;;11368:18:0;;;11341:7;11368:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11269:134::o;33193:183::-;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;33266:33;33290:8;33266:23;:33::i;:::-;33310:25;33326:8;33310:15;:25::i;:::-;33346:22;:20;:22::i;11550:148::-;11615:4;11632:36;11641:10;11653:7;11662:5;11632:8;:36::i;12169:256::-;12258:4;12275:36;12285:6;12293:9;12304:6;12275:9;:36::i;:::-;-1:-1:-1;;;;;12351:19:0;;;;;;:11;:19;;;;;;;;12339:10;12351:31;;;;;;;;;12322:73;;12331:6;;12351:43;;12387:6;12351:43;:35;:43;:::i;:::-;12322:8;:73::i;:::-;-1:-1:-1;12413:4:0;12169:256;;;;;:::o;19006:130::-;19066:24;:8;19082:7;19066:24;:15;:24;:::i;:::-;19106:22;;-1:-1:-1;;;;;19106:22:0;;;;;;;;19006:130;:::o;12834:206::-;12940:10;12914:4;12961:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12961:32:0;;;;;;;;;;12914:4;;12931:79;;12952:7;;12961:48;;12998:10;12961:48;:36;:48;:::i;2062:181::-;2120:7;2152:5;;;2176:6;;;;2168:46;;;;;-1:-1:-1;;;2168:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20194:143;20268:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20285:22;20291:7;20300:6;20285:5;:22::i;16865:188::-;16937:22;16943:7;16952:6;16937:5;:22::i;:::-;-1:-1:-1;;;;;17000:20:0;;;;;;:11;:20;;;;;;;;16988:10;17000:32;;;;;;;;;16970:75;;16979:7;;17000:44;;17037:6;17000:44;:36;:44;:::i;18876:122::-;18933:21;:8;18946:7;18933:21;:12;:21;:::i;:::-;18970:20;;-1:-1:-1;;;;;18970:20:0;;;;;;;;18876:122;:::o;19503:95::-;19568:22;19574:7;19583:6;19568:5;:22::i;13543:216::-;13654:10;13628:4;13675:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13675:32:0;;;;;;;;;;13628:4;;13645:84;;13666:7;;13675:53;;13712:15;13675:53;:36;:53;:::i;11050:156::-;11119:4;11136:40;11146:10;11158:9;11169:6;11136:9;:40::i;17843:203::-;17915:4;-1:-1:-1;;;;;17940:21:0;;17932:68;;;;-1:-1:-1;;;17932:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18018:20:0;:11;:20;;;;;;;;;;;;;;;17843:203::o;22276:109::-;21370:9;:7;:9::i;:::-;21362:54;;;;;-1:-1:-1;;;21362:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21362:54:0;;;;;;;;;;;;;;;22349:28;22368:8;22349:18;:28::i;16345:335::-;-1:-1:-1;;;;;16438:19:0;;16430:68;;;;-1:-1:-1;;;16430:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16517:21:0;;16509:68;;;;-1:-1:-1;;;16509:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16590:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16641:31;;;;;;;;;;;;;;;;;16345:335;;;:::o;14249:429::-;-1:-1:-1;;;;;14347:20:0;;14339:70;;;;-1:-1:-1;;;14339:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14428:23:0;;14420:71;;;;-1:-1:-1;;;14420:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14524:17:0;;:9;:17;;;;;;;;;;;:29;;14546:6;14524:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14504:17:0;;;:9;:17;;;;;;;;;;;:49;;;;14587:20;;;;;;;:32;;14612:6;14587:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14564:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14635:35;;;;;;;14564:20;;14635:35;;;;;;;;;;;;;14249:429;;;:::o;2518:184::-;2576:7;2609:1;2604;:6;;2596:49;;;;;-1:-1:-1;;;2596:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2668:5:0;;;2518:184::o;17565:183::-;17645:18;17649:4;17655:7;17645:3;:18::i;:::-;17637:64;;;;-1:-1:-1;;;17637:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17712:20:0;17735:5;17712:20;;;;;;;;;;;:28;;-1:-1:-1;;17712:28:0;;;17565:183::o;14959:308::-;-1:-1:-1;;;;;15035:21:0;;15027:65;;;;;-1:-1:-1;;;15027:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15120:12;;:24;;15137:6;15120:24;:16;:24;:::i;:::-;15105:12;:39;-1:-1:-1;;;;;15176:18:0;;:9;:18;;;;;;;;;;;:30;;15199:6;15176:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15155:18:0;;:9;:18;;;;;;;;;;;:51;;;;15222:37;;;;;;;15155:18;;:9;;15222:37;;;;;;;;;;14959:308;;:::o;15599:306::-;-1:-1:-1;;;;;15674:21:0;;15666:67;;;;-1:-1:-1;;;15666:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15761:12;;:23;;15778:5;15761:23;:16;:23;:::i;:::-;15746:12;:38;-1:-1:-1;;;;;15816:18:0;;:9;:18;;;;;;;;;;;:29;;15839:5;15816:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15795:18:0;;:9;:18;;;;;;;;;;;:50;;;;15861:36;;;;;;;15795:9;;15861:36;;;;;;;;;;;15599:306;;:::o;17307:178::-;17385:18;17389:4;17395:7;17385:3;:18::i;:::-;17384:19;17376:63;;;;;-1:-1:-1;;;17376:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17450:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;17450:27:0;17473:4;17450:27;;;17307:178::o;22491:229::-;-1:-1:-1;;;;;22565:22:0;;22557:73;;;;-1:-1:-1;;;22557:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22667:6;;22646:38;;-1:-1:-1;;;;;22646:38:0;;;;22667:6;;22646:38;;22667:6;;22646:38;22695:6;:17;;-1:-1:-1;;;;;;22695:17:0;-1:-1:-1;;;;;22695:17:0;;;;;;;;;;22491:229::o;27360:6021::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27360:6021:0;;;-1:-1:-1;27360:6021:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://623f92e6cd9ddfb2d3de67447edb79950d19ffa3fa70292118d19f1bbc1c4600
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.