ETH Price: $2,963.07 (+3.42%)
Gas: 1 Gwei

Token

Bollycoin (BOLLY)
 

Overview

Max Total Supply

100,000,000 BOLLY

Holders

972 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,100 BOLLY

Value
$0.00
0xd512137935e8a75f678f4a8853378f3de05dada0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The community token for our NFT platform, BollyCoin aims to bridge the gap between Bollywood and Cryptocurrency by being the token through which the best Bollywood NFT's are bought and sold.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bollycoin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Bollycoin.sol
// SPDX-License-Identifier: ISC

pragma solidity ^0.8.4;

import "./interfaces/IBollycoin.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory tokenName, string memory tokenSymbol) {
        _name = tokenName;
        _symbol = tokenSymbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "Error: decreased allowance below zero"
        );

        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "Error: transfer from zero address");
        require(recipient != address(0), "Error: transfer to zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "Error: transfer amount exceeds balance"
        );

        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] = _balances[account] + amount;

        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "Error: burn from zero address");

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

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

        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "Transfer Paused");
    }
}

/**
 * @title ERC20 Token for Bollycoin.
 * Is a Standard ERC20 token.
 *
 * Access is extended from the AccessControl
 * abstract contract.
 */
contract Bollycoin is ERC20Pausable, AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _admin
    ) ERC20(_name, _symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _admin);
        _mint(_msgSender(), _totalSupply);
    }

    function mint(address to, uint256 amount) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()) ||hasRole(DEFAULT_ADMIN_ROLE, _msgSender()
        ) , "Caller is not a minter");
        _mint(to, amount);
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function pause() public {
        require(
            hasRole(PAUSER_ROLE, _msgSender()) ||  hasRole(DEFAULT_ADMIN_ROLE, _msgSender()
        ), "Caller is not a pauser");
        _pause();
    }

    function unpause() public {
        require(
            hasRole(PAUSER_ROLE, _msgSender()) || hasRole(DEFAULT_ADMIN_ROLE, _msgSender()
        ), "Caller is not a pauser");
        _unpause();
    }
}

File 2 of 10 : IBollycoin.sol
// SPDX-License-Identifier: ISC

pragma solidity ^0.8.7;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

File 3 of 10 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 4 of 10 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 10 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 8 of 10 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 9 of 10 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003675380380620036758339818101604052810190620000379190620005e3565b838381600390805190602001906200005192919062000487565b5080600490805190602001906200006a92919062000487565b506012600560006101000a81548160ff021916908360ff16021790555050506000600560016101000a81548160ff021916908315150217905550620000b96000801b82620000e460201b60201c565b620000da620000cd620000fa60201b60201c565b836200010260201b60201c565b5050505062000a38565b620000f682826200029e60201b60201c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c9062000714565b60405180910390fd5b62000189600083836200039060201b60201c565b80600260008282546200019d9190620007c3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620001f09190620007c3565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000292919062000736565b60405180910390a35050565b620002b082826200040060201b60201c565b6200038c5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000331620000fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003a88383836200046b60201b62000df01760201c565b620003b86200047060201b60201c565b15620003fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f290620006f2565b60405180910390fd5b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b6000600560019054906101000a900460ff16905090565b828054620004959062000894565b90600052602060002090601f016020900481019282620004b9576000855562000505565b82601f10620004d457805160ff191683800117855562000505565b8280016001018555821562000505579182015b8281111562000504578251825591602001919060010190620004e7565b5b50905062000514919062000518565b5090565b5b808211156200053357600081600090555060010162000519565b5090565b60006200054e62000548846200077c565b62000753565b9050828152602081018484840111156200056d576200056c62000992565b5b6200057a8482856200085e565b509392505050565b600081519050620005938162000a04565b92915050565b600082601f830112620005b157620005b06200098d565b5b8151620005c384826020860162000537565b91505092915050565b600081519050620005dd8162000a1e565b92915050565b600080600080608085870312156200060057620005ff6200099c565b5b600085015167ffffffffffffffff81111562000621576200062062000997565b5b6200062f8782880162000599565b945050602085015167ffffffffffffffff81111562000653576200065262000997565b5b620006618782880162000599565b93505060406200067487828801620005cc565b9250506060620006878782880162000582565b91505092959194509250565b6000620006a2600f83620007b2565b9150620006af82620009b2565b602082019050919050565b6000620006c9601f83620007b2565b9150620006d682620009db565b602082019050919050565b620006ec8162000854565b82525050565b600060208201905081810360008301526200070d8162000693565b9050919050565b600060208201905081810360008301526200072f81620006ba565b9050919050565b60006020820190506200074d6000830184620006e1565b92915050565b60006200075f62000772565b90506200076d8282620008ca565b919050565b6000604051905090565b600067ffffffffffffffff8211156200079a57620007996200095e565b5b620007a582620009a1565b9050602081019050919050565b600082825260208201905092915050565b6000620007d08262000854565b9150620007dd8362000854565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000815576200081462000900565b5b828201905092915050565b60006200082d8262000834565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200087e57808201518184015260208101905062000861565b838111156200088e576000848401525b50505050565b60006002820490506001821680620008ad57607f821691505b60208210811415620008c457620008c36200092f565b5b50919050565b620008d582620009a1565b810181811067ffffffffffffffff82111715620008f757620008f66200095e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5472616e73666572205061757365640000000000000000000000000000000000600082015250565b7f4572726f723a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000a0f8162000820565b811462000a1b57600080fd5b50565b62000a298162000854565b811462000a3557600080fd5b50565b612c2d8062000a486000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de578063a217fddf11610097578063d539139311610071578063d539139314610460578063d547741f1461047e578063dd62ed3e1461049a578063e63ab1e9146104ca57610173565b8063a217fddf146103e2578063a457c2d714610400578063a9059cbb1461043057610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a5780638456cb591461038a57806391d148541461039457806395d89b41146103c457610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611e0a565b6104e8565b60405161019f9190612207565b60405180910390f35b6101b0610562565b6040516101bd919061223d565b60405180910390f35b6101e060048036038101906101db9190611d5d565b6105f4565b6040516101ed9190612207565b60405180910390f35b6101fe610612565b60405161020b919061247f565b60405180910390f35b61022e60048036038101906102299190611d0a565b61061c565b60405161023b9190612207565b60405180910390f35b61025e60048036038101906102599190611d9d565b61071d565b60405161026b9190612222565b60405180910390f35b61028e60048036038101906102899190611dca565b61073d565b005b610298610766565b6040516102a5919061249a565b60405180910390f35b6102c860048036038101906102c39190611dca565b61077d565b005b6102e460048036038101906102df9190611d5d565b610800565b6040516102f19190612207565b60405180910390f35b6103026108ac565b005b61031e60048036038101906103199190611d5d565b610941565b005b61033a60048036038101906103359190611e37565b6109da565b005b6103446109ee565b6040516103519190612207565b60405180910390f35b610374600480360381019061036f9190611c9d565b610a05565b604051610381919061247f565b60405180910390f35b610392610a4d565b005b6103ae60048036038101906103a99190611dca565b610ae2565b6040516103bb9190612207565b60405180910390f35b6103cc610b4d565b6040516103d9919061223d565b60405180910390f35b6103ea610bdf565b6040516103f79190612222565b60405180910390f35b61041a60048036038101906104159190611d5d565b610be6565b6040516104279190612207565b60405180910390f35b61044a60048036038101906104459190611d5d565b610cda565b6040516104579190612207565b60405180910390f35b610468610cf8565b6040516104759190612222565b60405180910390f35b61049860048036038101906104939190611dca565b610d1c565b005b6104b460048036038101906104af9190611cca565b610d45565b6040516104c1919061247f565b60405180910390f35b6104d2610dcc565b6040516104df9190612222565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055b575061055a82610df5565b5b9050919050565b606060038054610571906126a8565b80601f016020809104026020016040519081016040528092919081815260200182805461059d906126a8565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000610608610601610e5f565b8484610e67565b6001905092915050565b6000600254905090565b6000610629848484611032565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610674610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb9061241f565b60405180910390fd5b61071185610700610e5f565b858461070c919061258c565b610e67565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6107468261071d565b61075781610752610e5f565b6112b1565b610761838361134e565b505050565b6000600560009054906101000a900460ff16905090565b610785610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e99061245f565b60405180910390fd5b6107fc828261142f565b5050565b60006108a261080d610e5f565b84846001600061081b610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461089d91906124dc565b610e67565b6001905092915050565b6108dd7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108d8610e5f565b610ae2565b806108f857506108f76000801b6108f2610e5f565b610ae2565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906123ff565b60405180910390fd5b61093f611511565b565b6109727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661096d610e5f565b610ae2565b8061098d575061098c6000801b610987610e5f565b610ae2565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061233f565b60405180910390fd5b6109d682826115b3565b5050565b6109eb6109e5610e5f565b8261173e565b50565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a79610e5f565b610ae2565b80610a995750610a986000801b610a93610e5f565b610ae2565b5b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906123ff565b60405180910390fd5b610ae0611912565b565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b5c906126a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b88906126a8565b8015610bd55780601f10610baa57610100808354040283529160200191610bd5565b820191906000526020600020905b815481529060010190602001808311610bb857829003601f168201915b5050505050905090565b6000801b81565b60008060016000610bf5610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061237f565b60405180910390fd5b610ccf610cbd610e5f565b858584610cca919061258c565b610e67565b600191505092915050565b6000610cee610ce7610e5f565b8484611032565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d258261071d565b610d3681610d31610e5f565b6112b1565b610d40838361142f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece9061227f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e9061239f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611025919061247f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061243f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906122df565b60405180910390fd5b61111d8383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906122bf565b60405180910390fd5b81816111af919061258c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123f91906124dc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a3919061247f565b60405180910390a350505050565b6112bb8282610ae2565b61134a576112e08173ffffffffffffffffffffffffffffffffffffffff166014611a0d565b6112ee8360001c6020611a0d565b6040516020016112ff9291906121b2565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611341919061223d565b60405180910390fd5b5050565b6113588282610ae2565b61142b5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113d0610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6114398282610ae2565b1561150d5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114b2610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115196109ee565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061229f565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61159c610e5f565b6040516115a991906121ec565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906123df565b60405180910390fd5b61162f600083836119b5565b806002600082825461164191906124dc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169291906124dc565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611732919061247f565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a59061231f565b60405180910390fd5b6117ba826000836119b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061235f565b60405180910390fd5b818161184c919061258c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118a0919061258c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611905919061247f565b60405180910390a3505050565b61191a6109ee565b1561195a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611951906122ff565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e610e5f565b6040516119ab91906121ec565b60405180910390a1565b6119c0838383610df0565b6119c86109ee565b15611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906123bf565b60405180910390fd5b505050565b606060006002836002611a209190612532565b611a2a91906124dc565b67ffffffffffffffff811115611a4357611a42612767565b5b6040519080825280601f01601f191660200182016040528015611a755781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611aad57611aac612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b1157611b10612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611b519190612532565b611b5b91906124dc565b90505b6001811115611bfb577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611b9d57611b9c612738565b5b1a60f81b828281518110611bb457611bb3612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611bf49061267e565b9050611b5e565b5060008414611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c369061225f565b60405180910390fd5b8091505092915050565b600081359050611c5881612b9b565b92915050565b600081359050611c6d81612bb2565b92915050565b600081359050611c8281612bc9565b92915050565b600081359050611c9781612be0565b92915050565b600060208284031215611cb357611cb2612796565b5b6000611cc184828501611c49565b91505092915050565b60008060408385031215611ce157611ce0612796565b5b6000611cef85828601611c49565b9250506020611d0085828601611c49565b9150509250929050565b600080600060608486031215611d2357611d22612796565b5b6000611d3186828701611c49565b9350506020611d4286828701611c49565b9250506040611d5386828701611c88565b9150509250925092565b60008060408385031215611d7457611d73612796565b5b6000611d8285828601611c49565b9250506020611d9385828601611c88565b9150509250929050565b600060208284031215611db357611db2612796565b5b6000611dc184828501611c5e565b91505092915050565b60008060408385031215611de157611de0612796565b5b6000611def85828601611c5e565b9250506020611e0085828601611c49565b9150509250929050565b600060208284031215611e2057611e1f612796565b5b6000611e2e84828501611c73565b91505092915050565b600060208284031215611e4d57611e4c612796565b5b6000611e5b84828501611c88565b91505092915050565b611e6d816125c0565b82525050565b611e7c816125d2565b82525050565b611e8b816125de565b82525050565b6000611e9c826124b5565b611ea681856124c0565b9350611eb681856020860161264b565b611ebf8161279b565b840191505092915050565b6000611ed5826124b5565b611edf81856124d1565b9350611eef81856020860161264b565b80840191505092915050565b6000611f086020836124c0565b9150611f13826127ac565b602082019050919050565b6000611f2b6020836124c0565b9150611f36826127d5565b602082019050919050565b6000611f4e6014836124c0565b9150611f59826127fe565b602082019050919050565b6000611f716026836124c0565b9150611f7c82612827565b604082019050919050565b6000611f94601f836124c0565b9150611f9f82612876565b602082019050919050565b6000611fb76010836124c0565b9150611fc28261289f565b602082019050919050565b6000611fda601d836124c0565b9150611fe5826128c8565b602082019050919050565b6000611ffd6016836124c0565b9150612008826128f1565b602082019050919050565b60006120206022836124c0565b915061202b8261291a565b604082019050919050565b60006120436025836124c0565b915061204e82612969565b604082019050919050565b6000612066601e836124c0565b9150612071826129b8565b602082019050919050565b6000612089600f836124c0565b9150612094826129e1565b602082019050919050565b60006120ac6017836124d1565b91506120b782612a0a565b601782019050919050565b60006120cf601f836124c0565b91506120da82612a33565b602082019050919050565b60006120f26016836124c0565b91506120fd82612a5c565b602082019050919050565b60006121156028836124c0565b915061212082612a85565b604082019050919050565b60006121386011836124d1565b915061214382612ad4565b601182019050919050565b600061215b6021836124c0565b915061216682612afd565b604082019050919050565b600061217e602f836124c0565b915061218982612b4c565b604082019050919050565b61219d81612634565b82525050565b6121ac8161263e565b82525050565b60006121bd8261209f565b91506121c98285611eca565b91506121d48261212b565b91506121e08284611eca565b91508190509392505050565b60006020820190506122016000830184611e64565b92915050565b600060208201905061221c6000830184611e73565b92915050565b60006020820190506122376000830184611e82565b92915050565b600060208201905081810360008301526122578184611e91565b905092915050565b6000602082019050818103600083015261227881611efb565b9050919050565b6000602082019050818103600083015261229881611f1e565b9050919050565b600060208201905081810360008301526122b881611f41565b9050919050565b600060208201905081810360008301526122d881611f64565b9050919050565b600060208201905081810360008301526122f881611f87565b9050919050565b6000602082019050818103600083015261231881611faa565b9050919050565b6000602082019050818103600083015261233881611fcd565b9050919050565b6000602082019050818103600083015261235881611ff0565b9050919050565b6000602082019050818103600083015261237881612013565b9050919050565b6000602082019050818103600083015261239881612036565b9050919050565b600060208201905081810360008301526123b881612059565b9050919050565b600060208201905081810360008301526123d88161207c565b9050919050565b600060208201905081810360008301526123f8816120c2565b9050919050565b60006020820190508181036000830152612418816120e5565b9050919050565b6000602082019050818103600083015261243881612108565b9050919050565b600060208201905081810360008301526124588161214e565b9050919050565b6000602082019050818103600083015261247881612171565b9050919050565b60006020820190506124946000830184612194565b92915050565b60006020820190506124af60008301846121a3565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124e782612634565b91506124f283612634565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612527576125266126da565b5b828201905092915050565b600061253d82612634565b915061254883612634565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612581576125806126da565b5b828202905092915050565b600061259782612634565b91506125a283612634565b9250828210156125b5576125b46126da565b5b828203905092915050565b60006125cb82612614565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561266957808201518184015260208101905061264e565b83811115612678576000848401525b50505050565b600061268982612634565b9150600082141561269d5761269c6126da565b5b600182039050919050565b600060028204905060018216806126c057607f821691505b602082108114156126d4576126d3612709565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4572726f723a20617070726f76652066726f6d207a65726f2061646472657373600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a207472616e7366657220746f207a65726f206164647265737300600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4572726f723a206275726e2066726f6d207a65726f2061646472657373000000600082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4572726f723a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20617070726f766520746f207a65726f20616464726573730000600082015250565b7f5472616e73666572205061757365640000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4572726f723a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f43616c6c6572206973206e6f7420612070617573657200000000000000000000600082015250565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f4572726f723a207472616e736665722066726f6d207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612ba4816125c0565b8114612baf57600080fd5b50565b612bbb816125de565b8114612bc657600080fd5b50565b612bd2816125e8565b8114612bdd57600080fd5b50565b612be981612634565b8114612bf457600080fd5b5056fea2646970667358221220ff47246d849fda997d712d709a460e19cb80fc9a5d755582321d11389488718c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000098cbfb267e3d74c17ab17f94a1da0e79b9132390000000000000000000000000000000000000000000000000000000000000009426f6c6c79636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f4c4c59000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de578063a217fddf11610097578063d539139311610071578063d539139314610460578063d547741f1461047e578063dd62ed3e1461049a578063e63ab1e9146104ca57610173565b8063a217fddf146103e2578063a457c2d714610400578063a9059cbb1461043057610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a5780638456cb591461038a57806391d148541461039457806395d89b41146103c457610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611e0a565b6104e8565b60405161019f9190612207565b60405180910390f35b6101b0610562565b6040516101bd919061223d565b60405180910390f35b6101e060048036038101906101db9190611d5d565b6105f4565b6040516101ed9190612207565b60405180910390f35b6101fe610612565b60405161020b919061247f565b60405180910390f35b61022e60048036038101906102299190611d0a565b61061c565b60405161023b9190612207565b60405180910390f35b61025e60048036038101906102599190611d9d565b61071d565b60405161026b9190612222565b60405180910390f35b61028e60048036038101906102899190611dca565b61073d565b005b610298610766565b6040516102a5919061249a565b60405180910390f35b6102c860048036038101906102c39190611dca565b61077d565b005b6102e460048036038101906102df9190611d5d565b610800565b6040516102f19190612207565b60405180910390f35b6103026108ac565b005b61031e60048036038101906103199190611d5d565b610941565b005b61033a60048036038101906103359190611e37565b6109da565b005b6103446109ee565b6040516103519190612207565b60405180910390f35b610374600480360381019061036f9190611c9d565b610a05565b604051610381919061247f565b60405180910390f35b610392610a4d565b005b6103ae60048036038101906103a99190611dca565b610ae2565b6040516103bb9190612207565b60405180910390f35b6103cc610b4d565b6040516103d9919061223d565b60405180910390f35b6103ea610bdf565b6040516103f79190612222565b60405180910390f35b61041a60048036038101906104159190611d5d565b610be6565b6040516104279190612207565b60405180910390f35b61044a60048036038101906104459190611d5d565b610cda565b6040516104579190612207565b60405180910390f35b610468610cf8565b6040516104759190612222565b60405180910390f35b61049860048036038101906104939190611dca565b610d1c565b005b6104b460048036038101906104af9190611cca565b610d45565b6040516104c1919061247f565b60405180910390f35b6104d2610dcc565b6040516104df9190612222565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055b575061055a82610df5565b5b9050919050565b606060038054610571906126a8565b80601f016020809104026020016040519081016040528092919081815260200182805461059d906126a8565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000610608610601610e5f565b8484610e67565b6001905092915050565b6000600254905090565b6000610629848484611032565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610674610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb9061241f565b60405180910390fd5b61071185610700610e5f565b858461070c919061258c565b610e67565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6107468261071d565b61075781610752610e5f565b6112b1565b610761838361134e565b505050565b6000600560009054906101000a900460ff16905090565b610785610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e99061245f565b60405180910390fd5b6107fc828261142f565b5050565b60006108a261080d610e5f565b84846001600061081b610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461089d91906124dc565b610e67565b6001905092915050565b6108dd7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108d8610e5f565b610ae2565b806108f857506108f76000801b6108f2610e5f565b610ae2565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906123ff565b60405180910390fd5b61093f611511565b565b6109727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661096d610e5f565b610ae2565b8061098d575061098c6000801b610987610e5f565b610ae2565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061233f565b60405180910390fd5b6109d682826115b3565b5050565b6109eb6109e5610e5f565b8261173e565b50565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a79610e5f565b610ae2565b80610a995750610a986000801b610a93610e5f565b610ae2565b5b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906123ff565b60405180910390fd5b610ae0611912565b565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b5c906126a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b88906126a8565b8015610bd55780601f10610baa57610100808354040283529160200191610bd5565b820191906000526020600020905b815481529060010190602001808311610bb857829003601f168201915b5050505050905090565b6000801b81565b60008060016000610bf5610e5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061237f565b60405180910390fd5b610ccf610cbd610e5f565b858584610cca919061258c565b610e67565b600191505092915050565b6000610cee610ce7610e5f565b8484611032565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d258261071d565b610d3681610d31610e5f565b6112b1565b610d40838361142f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece9061227f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e9061239f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611025919061247f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061243f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906122df565b60405180910390fd5b61111d8383836119b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906122bf565b60405180910390fd5b81816111af919061258c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461123f91906124dc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a3919061247f565b60405180910390a350505050565b6112bb8282610ae2565b61134a576112e08173ffffffffffffffffffffffffffffffffffffffff166014611a0d565b6112ee8360001c6020611a0d565b6040516020016112ff9291906121b2565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611341919061223d565b60405180910390fd5b5050565b6113588282610ae2565b61142b5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113d0610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6114398282610ae2565b1561150d5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114b2610e5f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115196109ee565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061229f565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61159c610e5f565b6040516115a991906121ec565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906123df565b60405180910390fd5b61162f600083836119b5565b806002600082825461164191906124dc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169291906124dc565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611732919061247f565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a59061231f565b60405180910390fd5b6117ba826000836119b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061235f565b60405180910390fd5b818161184c919061258c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118a0919061258c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611905919061247f565b60405180910390a3505050565b61191a6109ee565b1561195a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611951906122ff565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e610e5f565b6040516119ab91906121ec565b60405180910390a1565b6119c0838383610df0565b6119c86109ee565b15611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff906123bf565b60405180910390fd5b505050565b606060006002836002611a209190612532565b611a2a91906124dc565b67ffffffffffffffff811115611a4357611a42612767565b5b6040519080825280601f01601f191660200182016040528015611a755781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611aad57611aac612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b1157611b10612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611b519190612532565b611b5b91906124dc565b90505b6001811115611bfb577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611b9d57611b9c612738565b5b1a60f81b828281518110611bb457611bb3612738565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611bf49061267e565b9050611b5e565b5060008414611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c369061225f565b60405180910390fd5b8091505092915050565b600081359050611c5881612b9b565b92915050565b600081359050611c6d81612bb2565b92915050565b600081359050611c8281612bc9565b92915050565b600081359050611c9781612be0565b92915050565b600060208284031215611cb357611cb2612796565b5b6000611cc184828501611c49565b91505092915050565b60008060408385031215611ce157611ce0612796565b5b6000611cef85828601611c49565b9250506020611d0085828601611c49565b9150509250929050565b600080600060608486031215611d2357611d22612796565b5b6000611d3186828701611c49565b9350506020611d4286828701611c49565b9250506040611d5386828701611c88565b9150509250925092565b60008060408385031215611d7457611d73612796565b5b6000611d8285828601611c49565b9250506020611d9385828601611c88565b9150509250929050565b600060208284031215611db357611db2612796565b5b6000611dc184828501611c5e565b91505092915050565b60008060408385031215611de157611de0612796565b5b6000611def85828601611c5e565b9250506020611e0085828601611c49565b9150509250929050565b600060208284031215611e2057611e1f612796565b5b6000611e2e84828501611c73565b91505092915050565b600060208284031215611e4d57611e4c612796565b5b6000611e5b84828501611c88565b91505092915050565b611e6d816125c0565b82525050565b611e7c816125d2565b82525050565b611e8b816125de565b82525050565b6000611e9c826124b5565b611ea681856124c0565b9350611eb681856020860161264b565b611ebf8161279b565b840191505092915050565b6000611ed5826124b5565b611edf81856124d1565b9350611eef81856020860161264b565b80840191505092915050565b6000611f086020836124c0565b9150611f13826127ac565b602082019050919050565b6000611f2b6020836124c0565b9150611f36826127d5565b602082019050919050565b6000611f4e6014836124c0565b9150611f59826127fe565b602082019050919050565b6000611f716026836124c0565b9150611f7c82612827565b604082019050919050565b6000611f94601f836124c0565b9150611f9f82612876565b602082019050919050565b6000611fb76010836124c0565b9150611fc28261289f565b602082019050919050565b6000611fda601d836124c0565b9150611fe5826128c8565b602082019050919050565b6000611ffd6016836124c0565b9150612008826128f1565b602082019050919050565b60006120206022836124c0565b915061202b8261291a565b604082019050919050565b60006120436025836124c0565b915061204e82612969565b604082019050919050565b6000612066601e836124c0565b9150612071826129b8565b602082019050919050565b6000612089600f836124c0565b9150612094826129e1565b602082019050919050565b60006120ac6017836124d1565b91506120b782612a0a565b601782019050919050565b60006120cf601f836124c0565b91506120da82612a33565b602082019050919050565b60006120f26016836124c0565b91506120fd82612a5c565b602082019050919050565b60006121156028836124c0565b915061212082612a85565b604082019050919050565b60006121386011836124d1565b915061214382612ad4565b601182019050919050565b600061215b6021836124c0565b915061216682612afd565b604082019050919050565b600061217e602f836124c0565b915061218982612b4c565b604082019050919050565b61219d81612634565b82525050565b6121ac8161263e565b82525050565b60006121bd8261209f565b91506121c98285611eca565b91506121d48261212b565b91506121e08284611eca565b91508190509392505050565b60006020820190506122016000830184611e64565b92915050565b600060208201905061221c6000830184611e73565b92915050565b60006020820190506122376000830184611e82565b92915050565b600060208201905081810360008301526122578184611e91565b905092915050565b6000602082019050818103600083015261227881611efb565b9050919050565b6000602082019050818103600083015261229881611f1e565b9050919050565b600060208201905081810360008301526122b881611f41565b9050919050565b600060208201905081810360008301526122d881611f64565b9050919050565b600060208201905081810360008301526122f881611f87565b9050919050565b6000602082019050818103600083015261231881611faa565b9050919050565b6000602082019050818103600083015261233881611fcd565b9050919050565b6000602082019050818103600083015261235881611ff0565b9050919050565b6000602082019050818103600083015261237881612013565b9050919050565b6000602082019050818103600083015261239881612036565b9050919050565b600060208201905081810360008301526123b881612059565b9050919050565b600060208201905081810360008301526123d88161207c565b9050919050565b600060208201905081810360008301526123f8816120c2565b9050919050565b60006020820190508181036000830152612418816120e5565b9050919050565b6000602082019050818103600083015261243881612108565b9050919050565b600060208201905081810360008301526124588161214e565b9050919050565b6000602082019050818103600083015261247881612171565b9050919050565b60006020820190506124946000830184612194565b92915050565b60006020820190506124af60008301846121a3565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124e782612634565b91506124f283612634565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612527576125266126da565b5b828201905092915050565b600061253d82612634565b915061254883612634565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612581576125806126da565b5b828202905092915050565b600061259782612634565b91506125a283612634565b9250828210156125b5576125b46126da565b5b828203905092915050565b60006125cb82612614565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561266957808201518184015260208101905061264e565b83811115612678576000848401525b50505050565b600061268982612634565b9150600082141561269d5761269c6126da565b5b600182039050919050565b600060028204905060018216806126c057607f821691505b602082108114156126d4576126d3612709565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4572726f723a20617070726f76652066726f6d207a65726f2061646472657373600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a207472616e7366657220746f207a65726f206164647265737300600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4572726f723a206275726e2066726f6d207a65726f2061646472657373000000600082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4572726f723a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20617070726f766520746f207a65726f20616464726573730000600082015250565b7f5472616e73666572205061757365640000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4572726f723a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f43616c6c6572206973206e6f7420612070617573657200000000000000000000600082015250565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f4572726f723a207472616e736665722066726f6d207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612ba4816125c0565b8114612baf57600080fd5b50565b612bbb816125de565b8114612bc657600080fd5b50565b612bd2816125e8565b8114612bdd57600080fd5b50565b612be981612634565b8114612bf457600080fd5b5056fea2646970667358221220ff47246d849fda997d712d709a460e19cb80fc9a5d755582321d11389488718c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000098cbfb267e3d74c17ab17f94a1da0e79b9132390000000000000000000000000000000000000000000000000000000000000009426f6c6c79636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f4c4c59000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bollycoin
Arg [1] : _symbol (string): BOLLY
Arg [2] : _totalSupply (uint256): 100000000000000000000000000
Arg [3] : _admin (address): 0x098CbfB267e3D74c17ab17f94a1da0E79B913239

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 000000000000000000000000098cbfb267e3d74c17ab17f94a1da0e79b913239
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 426f6c6c79636f696e0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 424f4c4c59000000000000000000000000000000000000000000000000000000


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.