ETH Price: $2,354.54 (+0.61%)

Token

Global Cannabis Applications Corp (GCAC)
 

Overview

Max Total Supply

200,000 GCAC

Holders

271

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,765.577250356154146873 GCAC

Value
$0.00
0x2ec7d593763eed26defa231b4c566252e2667a6b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Global Cannabis Applications Corp. commits to buy GCAC tokens on Uniswap with 1% of its quarterly sales revenue.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GCACToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 5 : GCACToken.sol
// SPDX-License-Identifier: UNLICENSED
/*
 * https://cannappscorp.com/ -- Global Cannabis Applications Corporation (GCAC)
 *
 * Address: Suite 830, 1100 Melville Street, Vancouver, British Columbia, V6E 4A6 Canada
 * Email: [email protected]
 *
 * As at 31-March-2021, GCAC is a publicly traded company on the Canadian Stock Exchange.
 *
 * Official GCAC Listing
 * https://www.thecse.com/en/listings/technology/global-cannabis-applications-corp
 *
 * Official GCAC Regulatory Filings 
 * https://www.sedar.com/DisplayCompanyDocuments.do?lang=EN&issuerNo=00036309
 *
 * This is an ERC-20 smart contract for the GCAC token that will be used as one side
 * of a Uniswap liquidity pool trading pair. This GCAC token has the following properties:
 *
 * 1. The number of GCAC tokens from this contract that will be initially added to the 
 *    Uniswap liquidity pool shall be 100,000. The amount of WETH added to the other side of
 *    the initial Uniswap liquidity pool shall be 5.
 * 2. GCAC hereby commits to swap an amount of WETH currency with the Uniswap GCAC<>WETH 
 *    trading pair every 3 months for no fewer than 8 quarters, i.e., 2 years, commencing 
 *    for the quarterly report as filed by GCAC for the quarter ending 31-March-2021.
 * 3. The value of the WETH currency swapped by GCAC shall be equal to 1% of GCAC's official
 *    'revenue', as disclosed in each of its quarterly regulatory filings. Each WETH
 *    swap shall be performed no later than 10 working days after the regulatory filing is
 *    available on the System for Electronic Document Analysis and Retrieval (SEDAR). SEDAR 
 *    is a mandatory document filing system for Canadian public companies.
 * 4. GCAC tokens returned by Uniswap from the quarterly swap of WETH shall be burned 
 *    by this smart contract, thereby reducing GCAC token circulating supply over time.
 * 5. This contract shall not be allowed mint any new GCAC tokens, i.e., no dilution.
 * 6. GCAC, the company, shall initially hold 100,000 GCAC tokens on its corporate
 *    balance sheet, i.e., the GCAC treasury tokens.
 * 7. GCAC's treasury tokens may only ever be swapped for WETH in Uniswap and are prevented
 *    from being transferred out of this contract to another exchange or wallet, i.e., no rug-pull.
 * 8. GCAC hereby commits to notify the DeFi community of its intent to withdraw liquidity from 
 *    Uniswap at least 3 months in advance. This contact enforces the liquidity-time-lock.
 * 9. GCAC hereby commits to notify the DeFi community of its intent to swap GCAC treasury tokens 
 *    on Uniswap at least 3 months in advance. This contact enforces the treasury-time-lock.
 *
 *
 * https://abbey.ch/         -- Abbey Technology GmbH, Zug, Switzerland
 * 
 * ABBEY DEFI
 * ========== 
 * 1. Decentralized Finance 'DeFi' is designed to be globally inclusive. 
 * 2. Centralized finance is based around national stock markets that have high barriers to entry. 
 * 3. The Abbey DeFi methodology offers companies listed on national stock exchanges exposure to DeFi.
 *
 * Abbey is a Uniswap-based DeFi service provider that allows public companies to offer people a novel 
 * way to speculate on the success of their business in a decentralized manner.
 * 
 * The premise is both elegant and simple, the public company commits to a marketing spend equal to 1% 
 * of its quarterly sales revenue. And, since it’s a public company, the exact value of this 1% is 
 * published in their public accounts, as filed quarterly with a national securities regulator.
 * 
 * Using Abbey as a Uniswap DeFi marketing agency, the public company spends 1% of its quarterly cash 
 * sales revenue on one side of a bespoke Uniswap trading contract. The other side of the Uniswap trade 
 * is the public company’s proprietary token that’s representing 1% of its future sales revenue.
 * 
 * DeFi traders wishing to speculate on the revenue growth of the public company deposit crypto-USD 
 * in return for “PUBCO-1%” Uniswap tokens. The Uniswap Automated Market Maker ensures DeFi market 
 * liquidity and legitimate price discovery. The more USD that the company deposits over time, the 
 * higher the value of the PUBCO-1% token, as held by DeFi speculators.
 *
*/
pragma solidity 0.7.6;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @title Global Cannabis Applications Corporation (GCAC) contract for Uniswap.
 * @author Abbey Technology GmbH
 * @notice Token contract for use with Uniswap.  Enforces restrictions outlined in the prospectus.
 */
contract GCACToken is ERC20 {

    enum TokenType { Unknown, GCAC, LiquidityPool }

    /**
     * @notice The details of a future company cashout.
     */
    struct Notice {
        // The maximum number of tokens proposed for sale.
        uint256 amount;

        // The date after which company tokens can be swapped.
        uint256 releaseDate;

        // Whether the notice given is for this contract's tokens (GCAC) or the
        // liquidity pool tokens created by Uniswap where fees are periodically
        // cashed in.
        TokenType tokenType;
    }

    // Event fired when a restricted wallet gives notice of a potential future trade.
    event NoticeGiven(address indexed who, uint256 amount, uint256 releaseDate, TokenType tokenType);

    /**
     * @notice Notice must be given to the public before treasury tokens can be swapped.
     */
    Notice public noticeTreasury;

    /**
     * @notice Notice must be given to the public before Liquidity Tokens can be removed from the pool.
     */
    Notice public noticeLiquidity;

    /**
    * @notice The account that created this contract, also functions as the liquidity provider.
    */
    address public owner;

    /**
     * @notice Holder of the company's 50% share of all Uniswap tokens.  Can only interact with the
     * Uniswap pair/router, is forbidden from trading tokens elsewhere.
     */
    address public treasury;

    /**
     * @notice The account that performs the 1% of sales buyback of tokens, all bought tokens are burned.
     * @dev They cannot be autoburned during transfer as the Uniswap client prevents the transaction.
     */
    address public buyback;

    /**
     * @notice The address of the Uniswap router, the liquidity provider and treasury can only interact with this
     * address.  This prevents trading outside of Uniswap for these accounts.
     */
    address public router;

    /**
     * @notice The address of the Uniswap Pair/ERC20 contract holding the Liquidity Pool tokens.
     */
    address public pairAddress;

    /**
     * @notice Restrict functionaly to the contract owner.
     */
    modifier onlyOwner {
        require(_msgSender() == owner, "You are not Owner.");
        _;
    }

    /**
     * @notice Restrict functionaly to the buyback account.
     */
    modifier onlyBuyback {
        require(_msgSender() == buyback, "You are not Buyback.");
        _;
    }

    constructor(uint256 initialSupply, string memory name, string memory symbol) ERC20(name, symbol) {
        owner = _msgSender();
        _mint(_msgSender(), initialSupply);
    }

    /**
     * Set the account that burns GCAC tokens periodically.
     */
    function setBuyback(address who) public onlyOwner {
        require(buyback == address(0), "The Buyback address can only be set once.");
        buyback = who;
    }

    /**
     * Set the address of the account holding GCAC tokens on behalf of the company.
     */
    function setTreasury(address who) public onlyOwner {
        require(treasury == address(0), "The Treasury address can only be set once.");
        treasury = who;
    }

    /**
     * Set the address of the Uniswap router, only this address is allowed to move Treasury tokens.
     */
    function setRouter(address who) public onlyOwner {
        require(router == address(0), "The Router address can only be set once.");
        router = who;
    }

    /**
     * Set the address of the Uniswap Pair/Pool contract.
     */
    function setPairAddress(address who) public onlyOwner {
        require(pairAddress == address(0), "The Pair address can only be set once.");
        pairAddress = who;
    }

    /**
     * @notice Treasury and Liquidity tokens must give advanced notice to the public before they can
     * be used.  The token type is determined by the address giving notice.
     *
     * @param who The address giving notice of a sale in the future.
     * @param amount The maximum number of tokens (in wei).
     * @param numSeconds The number of seconds the tokens cannot be sold for.
     */
    function giveNotice(address who, uint256 amount, uint256 numSeconds) public onlyOwner {
        require(pairAddress != address(0), "The Uniswap Pair contract address must be set.");
        require(who == treasury || who == address(this), "Only Treasury and Liquidity must give notice.");

        uint256 when = block.timestamp + (numSeconds * 1 seconds);

        TokenType tokenType;

        if(who == treasury) {
            require(noticeTreasury.releaseDate == 0 || block.timestamp >= noticeTreasury.releaseDate, "Cannot overwrite an active existing notice.");
            require(amount <= balanceOf(who), "Can't give notice for more GCAC tokens than owned.");
            tokenType = TokenType.GCAC;
            noticeTreasury = Notice(amount, when, tokenType);
        }
        else {
            require(noticeLiquidity.releaseDate == 0 || block.timestamp >= noticeLiquidity.releaseDate, "Cannot overwrite an active existing notice.");
            ERC20 pair = ERC20(pairAddress);
            require(amount <= pair.balanceOf(who), "Can't give notice for more Liquidity Tokens than owned.");
            tokenType = TokenType.LiquidityPool;
            noticeLiquidity = Notice(amount, when, tokenType);
        }

        emit NoticeGiven(who, amount, when, tokenType);
    }

    /**
     * @notice Enforce rules around the company accounts:
     * - Liquidity Pool Creator (owner) can never receive tokens back from Uniswap.
     * - Treasury can only send tokens to Uniswap.
     * - Tokens bought back by the company are immediateley burned.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(recipient != owner, "Liquidity Pool Creator cannot receive tokens.");
        require(sender != buyback, "Buyback cannot transfer tokens, it can only burn.");
        if(sender == treasury) {
            require(_msgSender() == router, "Treasury account tokens can only be moved by the Uniswap Router.");
            require(noticeTreasury.releaseDate != 0 && block.timestamp >= noticeTreasury.releaseDate, "Notice period has not been set or has not expired.");
            require(amount <= noticeTreasury.amount, "Treasury can't transfer more tokens than given notice for.");
            require(noticeTreasury.tokenType == TokenType.GCAC, "The notice given for this user is the wrong token type.");

            // Clear the remaining notice balance, this prevents giving notice on all tokens and
            // trickling them out.
            noticeTreasury = Notice(0, 0, TokenType.Unknown);
        }

        super._transfer(sender, recipient, amount);
    }

    /**
     * @notice Periodically draw down any fee entitlement from the Liquidity Pool after giving notice.
     * @param to The account to send the tokens to.
     * @param amount The number of tokens, in wei.
     */
    function transferLiquidityTokens(address to, uint256 amount) public onlyOwner {
        require(pairAddress != address(0), "The Uniswap Pair contract address must be set.");

        require(noticeLiquidity.releaseDate != 0 && block.timestamp >= noticeLiquidity.releaseDate, "Notice period has not been set or has not expired.");
        require(amount <= noticeLiquidity.amount, "Insufficient Liquidity Token balance.");
        require(noticeLiquidity.tokenType == TokenType.LiquidityPool, "The notice given for this user is the wrong token type.");

        ERC20 pair = ERC20(pairAddress);
        pair.transfer(to, amount);

        // Clear the notice even if only partially used.
        noticeLiquidity = Notice(0, 0, TokenType.Unknown);
    }

    /**
     * @notice The buyback account periodically buys tokens and then burns them to reduce the
     * total supply pushing up the price of the remaining tokens.
     */
    function burn() public onlyBuyback {
        _burn(buyback, balanceOf(buyback));
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";

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

    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 name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev 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 virtual {
        _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 { }
}

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

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseDate","type":"uint256"},{"indexed":false,"internalType":"enum GCACToken.TokenType","name":"tokenType","type":"uint8"}],"name":"NoticeGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyback","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"numSeconds","type":"uint256"}],"name":"giveNotice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noticeLiquidity","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"enum GCACToken.TokenType","name":"tokenType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noticeTreasury","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"enum GCACToken.TokenType","name":"tokenType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setBuyback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferLiquidityTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200379a3803806200379a833981810160405260608110156200003757600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200006257600080fd5b838201915060208201858111156200007957600080fd5b82518660018202830111640100000000821117156200009757600080fd5b8083526020830192505050908051906020019080838360005b83811015620000cd578082015181840152602081019050620000b0565b50505050905090810190601f168015620000fb5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011f57600080fd5b838201915060208201858111156200013657600080fd5b82518660018202830111640100000000821117156200015457600080fd5b8083526020830192505050908051906020019080838360005b838110156200018a5780820151818401526020810190506200016d565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b5060405250505081818160039080519060200190620001d9929190620004ff565b508060049080519060200190620001f2929190620004ff565b506012600560006101000a81548160ff021916908360ff1602179055505050620002216200028b60201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000282620002756200028b60201b60201c565b846200029360201b60201c565b505050620005b5565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200034b600083836200047160201b60201c565b62000367816002546200047660201b620020fb1790919060201c565b600281905550620003c5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200047660201b620020fb1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620004f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000537576000855562000583565b82601f106200055257805160ff191683800117855562000583565b8280016001018555821562000583579182015b828111156200058257825182559160200191906001019062000565565b5b50905062000592919062000596565b5090565b5b80821115620005b157600081600090555060010162000597565b5090565b6131d580620005c56000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063bbeed84511610097578063f0f4426011610071578063f0f44260146107e3578063f3856e7614610827578063f887ea401461086b578063f8ec69111461089f57610173565b8063bbeed845146106f0578063c0d7865514610727578063dd62ed3e1461076b57610173565b80638da5cb5b146104f957806395d89b411461052d578063a22d4832146105b0578063a457c2d7146105f4578063a8b0898214610658578063a9059cbb1461068c57610173565b8063313ce56711610130578063313ce5671461038657806339509351146103a757806344df8e701461040b578063497faeb91461041557806361d027b31461046d57806370a08231146104a157610173565b806306fdde0314610178578063095ea7b3146101fb57806318160ddd1461025f5780631c4f1a771461027d57806323b872dd146102cb5780632f0714671461034f575b600080fd5b6101806108d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610975565b60405180821515815260200191505060405180910390f35b610267610993565b6040518082815260200191505060405180910390f35b6102c96004803603604081101561029357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099d565b005b610337600480360360608110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da1565b60405180821515815260200191505060405180910390f35b610357610e7a565b6040518084815260200183815260200182600281111561037357fe5b8152602001935050505060405180910390f35b61038e610e9f565b604051808260ff16815260200191505060405180910390f35b6103f3600480360360408110156103bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b610413610f69565b005b61046b6004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061108b565b005b6104756116e8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e3600480360360208110156104b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061170e565b6040518082815260200191505060405180910390f35b610501611756565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053561177c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561057557808201518184015260208101905061055a565b50505050905090810190601f1680156105a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f2600480360360208110156105c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181e565b005b6106406004803603604081101561060a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d3565b60405180821515815260200191505060405180910390f35b610660611aa0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106d8600480360360408110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac6565b60405180821515815260200191505060405180910390f35b6106f8611ae4565b6040518084815260200183815260200182600281111561071457fe5b8152602001935050505060405180910390f35b6107696004803603602081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b09565b005b6107cd6004803603604081101561078157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cbe565b6040518082815260200191505060405180910390f35b610825600480360360208110156107f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d45565b005b6108696004803603602081101561083d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611efa565b005b6108736120af565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108a76120d5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000610989610982612183565b848461218b565b6001905092915050565b6000600254905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109de612183565b73ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613009602e913960400191505060405180910390fd5b600060096001015414158015610b2a57506009600101544210155b610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612f516032913960400191505060405180910390fd5b600960000154811115610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612fe46025913960400191505060405180910390fd5b600280811115610be957fe5b600960020160009054906101000a900460ff166002811115610c0757fe5b14610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fad6037913960400191505060405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610cf557600080fd5b505af1158015610d09573d6000803e3d6000fd5b505050506040513d6020811015610d1f57600080fd5b8101908080519060200190929190505050506040518060600160405280600081526020016000815260200160006002811115610d5757fe5b8152506009600082015181600001556020820151816001015560408201518160020160006101000a81548160ff02191690836002811115610d9457fe5b0217905550905050505050565b6000610dae848484612382565b610e6f84610dba612183565b610e6a8560405180606001604052806028815260200161306460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e20612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b61218b565b600190509392505050565b60098060000154908060010154908060020160009054906101000a900460ff16905083565b6000600560009054906101000a900460ff16905090565b6000610f5f610ec3612183565b84610f5a8560016000610ed4612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120fb90919063ffffffff16565b61218b565b6001905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610faa612183565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f596f7520617265206e6f74204275796261636b2e00000000000000000000000081525060200191505060405180910390fd5b611089600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611084600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661170e565b612858565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110cc612183565b73ffffffffffffffffffffffffffffffffffffffff1614611155576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156111fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613009602e913960400191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128457503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6112d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061314e602d913960400191505060405180910390fd5b600060018202420190506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561147b576000600660010154148061135457506006600101544210155b6113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612e6f602b913960400191505060405180910390fd5b6113b28561170e565b84111561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061311c6032913960400191505060405180910390fd5b60019050604051806060016040528085815260200183815260200182600281111561143157fe5b8152506006600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561146e57fe5b0217905550905050611678565b6000600960010154148061149457506009600101544210155b6114e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612e6f602b913960400191505060405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d60208110156115a157600080fd5b810190808051906020019092919050505085111561160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612d896037913960400191505060405180910390fd5b60029150604051806060016040528086815260200184815260200183600281111561163157fe5b8152506009600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561166e57fe5b0217905550905050505b8473ffffffffffffffffffffffffffffffffffffffff167f0b7bf1018efa7c88b69c11d6a5bdaae7346f1ac9bc3f1954b14be9dadd1ea7cf858484604051808481526020018381526020018260028111156116cf57fe5b8152602001935050505060405180910390a25050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661185f612183565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061308c6026913960400191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611a966119e0612183565b84611a918560405180606001604052806025815260200161317b6025913960016000611a0a612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b61218b565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611ada611ad3612183565b8484612382565b6001905092915050565b60068060000154908060010154908060020160009054906101000a900460ff16905083565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b4a612183565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612ee96028913960400191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d86612183565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612f83602a913960400191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f3b612183565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612ec06029913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080828401905083811015612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612297576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612de26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613037602d913960400191505060405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180612e3e6031913960400191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561278e57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612567612183565b73ffffffffffffffffffffffffffffffffffffffff16146125d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180612f116040913960400191505060405180910390fd5b6000600660010154141580156125ee57506006600101544210155b612643576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612f516032913960400191505060405180910390fd5b6006600001548111156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180612e04603a913960400191505060405180910390fd5b600160028111156126ae57fe5b600660020160009054906101000a900460ff1660028111156126cc57fe5b14612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fad6037913960400191505060405180910390fd5b604051806060016040528060008152602001600081526020016000600281111561274857fe5b8152506006600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561278557fe5b02179055509050505b612799838383612a1c565b505050565b600083831115829061284b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128105780820151818401526020810190506127f5565b50505050905090810190601f16801561283d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130b26021913960400191505060405180910390fd5b6128ea82600083612cdd565b61295581604051806060016040528060228152602001612dc0602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129ac81600254612ce290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130d36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612d666023913960400191505060405180910390fd5b612b33838383612cdd565b612b9e81604051806060016040528060268152602001612e9a602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c31816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120fb90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600082821115612d5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737343616e27742067697665206e6f7469636520666f72206d6f7265204c697175696469747920546f6b656e73207468616e206f776e65642e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737354726561737572792063616e2774207472616e73666572206d6f726520746f6b656e73207468616e20676976656e206e6f7469636520666f722e4275796261636b2063616e6e6f74207472616e7366657220746f6b656e732c2069742063616e206f6e6c79206275726e2e43616e6e6f74206f766572777269746520616e20616374697665206578697374696e67206e6f746963652e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546865204275796261636b20616464726573732063616e206f6e6c7920626520736574206f6e63652e54686520526f7574657220616464726573732063616e206f6e6c7920626520736574206f6e63652e5472656173757279206163636f756e7420746f6b656e732063616e206f6e6c79206265206d6f7665642062792074686520556e697377617020526f757465722e4e6f7469636520706572696f6420686173206e6f74206265656e20736574206f7220686173206e6f7420657870697265642e54686520547265617375727920616464726573732063616e206f6e6c7920626520736574206f6e63652e546865206e6f7469636520676976656e20666f7220746869732075736572206973207468652077726f6e6720746f6b656e20747970652e496e73756666696369656e74204c697175696469747920546f6b656e2062616c616e63652e54686520556e6973776170205061697220636f6e74726163742061646472657373206d757374206265207365742e4c697175696469747920506f6f6c2043726561746f722063616e6e6f74207265636569766520746f6b656e732e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546865205061697220616464726573732063616e206f6e6c7920626520736574206f6e63652e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737343616e27742067697665206e6f7469636520666f72206d6f7265204743414320746f6b656e73207468616e206f776e65642e4f6e6c7920547265617375727920616e64204c6971756964697479206d7573742067697665206e6f746963652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9bdb1ccdec115cc121dd4554014d5de69e64003189a4df6c93fb423f4d2518864736f6c63430007060033000000000000000000000000000000000000000000002a5a058fc295ed000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000021476c6f62616c2043616e6e61626973204170706c69636174696f6e7320436f72700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044743414300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063bbeed84511610097578063f0f4426011610071578063f0f44260146107e3578063f3856e7614610827578063f887ea401461086b578063f8ec69111461089f57610173565b8063bbeed845146106f0578063c0d7865514610727578063dd62ed3e1461076b57610173565b80638da5cb5b146104f957806395d89b411461052d578063a22d4832146105b0578063a457c2d7146105f4578063a8b0898214610658578063a9059cbb1461068c57610173565b8063313ce56711610130578063313ce5671461038657806339509351146103a757806344df8e701461040b578063497faeb91461041557806361d027b31461046d57806370a08231146104a157610173565b806306fdde0314610178578063095ea7b3146101fb57806318160ddd1461025f5780631c4f1a771461027d57806323b872dd146102cb5780632f0714671461034f575b600080fd5b6101806108d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610975565b60405180821515815260200191505060405180910390f35b610267610993565b6040518082815260200191505060405180910390f35b6102c96004803603604081101561029357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099d565b005b610337600480360360608110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da1565b60405180821515815260200191505060405180910390f35b610357610e7a565b6040518084815260200183815260200182600281111561037357fe5b8152602001935050505060405180910390f35b61038e610e9f565b604051808260ff16815260200191505060405180910390f35b6103f3600480360360408110156103bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b610413610f69565b005b61046b6004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061108b565b005b6104756116e8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e3600480360360208110156104b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061170e565b6040518082815260200191505060405180910390f35b610501611756565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053561177c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561057557808201518184015260208101905061055a565b50505050905090810190601f1680156105a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105f2600480360360208110156105c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181e565b005b6106406004803603604081101561060a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d3565b60405180821515815260200191505060405180910390f35b610660611aa0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106d8600480360360408110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac6565b60405180821515815260200191505060405180910390f35b6106f8611ae4565b6040518084815260200183815260200182600281111561071457fe5b8152602001935050505060405180910390f35b6107696004803603602081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b09565b005b6107cd6004803603604081101561078157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cbe565b6040518082815260200191505060405180910390f35b610825600480360360208110156107f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d45565b005b6108696004803603602081101561083d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611efa565b005b6108736120af565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108a76120d5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000610989610982612183565b848461218b565b6001905092915050565b6000600254905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109de612183565b73ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613009602e913960400191505060405180910390fd5b600060096001015414158015610b2a57506009600101544210155b610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612f516032913960400191505060405180910390fd5b600960000154811115610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612fe46025913960400191505060405180910390fd5b600280811115610be957fe5b600960020160009054906101000a900460ff166002811115610c0757fe5b14610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fad6037913960400191505060405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610cf557600080fd5b505af1158015610d09573d6000803e3d6000fd5b505050506040513d6020811015610d1f57600080fd5b8101908080519060200190929190505050506040518060600160405280600081526020016000815260200160006002811115610d5757fe5b8152506009600082015181600001556020820151816001015560408201518160020160006101000a81548160ff02191690836002811115610d9457fe5b0217905550905050505050565b6000610dae848484612382565b610e6f84610dba612183565b610e6a8560405180606001604052806028815260200161306460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e20612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b61218b565b600190509392505050565b60098060000154908060010154908060020160009054906101000a900460ff16905083565b6000600560009054906101000a900460ff16905090565b6000610f5f610ec3612183565b84610f5a8560016000610ed4612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120fb90919063ffffffff16565b61218b565b6001905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610faa612183565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f596f7520617265206e6f74204275796261636b2e00000000000000000000000081525060200191505060405180910390fd5b611089600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611084600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661170e565b612858565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110cc612183565b73ffffffffffffffffffffffffffffffffffffffff1614611155576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156111fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613009602e913960400191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128457503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6112d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061314e602d913960400191505060405180910390fd5b600060018202420190506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561147b576000600660010154148061135457506006600101544210155b6113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612e6f602b913960400191505060405180910390fd5b6113b28561170e565b84111561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061311c6032913960400191505060405180910390fd5b60019050604051806060016040528085815260200183815260200182600281111561143157fe5b8152506006600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561146e57fe5b0217905550905050611678565b6000600960010154148061149457506009600101544210155b6114e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612e6f602b913960400191505060405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d60208110156115a157600080fd5b810190808051906020019092919050505085111561160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612d896037913960400191505060405180910390fd5b60029150604051806060016040528086815260200184815260200183600281111561163157fe5b8152506009600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561166e57fe5b0217905550905050505b8473ffffffffffffffffffffffffffffffffffffffff167f0b7bf1018efa7c88b69c11d6a5bdaae7346f1ac9bc3f1954b14be9dadd1ea7cf858484604051808481526020018381526020018260028111156116cf57fe5b8152602001935050505060405180910390a25050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661185f612183565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061308c6026913960400191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611a966119e0612183565b84611a918560405180606001604052806025815260200161317b6025913960016000611a0a612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b61218b565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611ada611ad3612183565b8484612382565b6001905092915050565b60068060000154908060010154908060020160009054906101000a900460ff16905083565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b4a612183565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612ee96028913960400191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d86612183565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612f83602a913960400191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f3b612183565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f596f7520617265206e6f74204f776e65722e000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612ec06029913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080828401905083811015612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612297576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612de26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613037602d913960400191505060405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180612e3e6031913960400191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561278e57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612567612183565b73ffffffffffffffffffffffffffffffffffffffff16146125d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180612f116040913960400191505060405180910390fd5b6000600660010154141580156125ee57506006600101544210155b612643576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180612f516032913960400191505060405180910390fd5b6006600001548111156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180612e04603a913960400191505060405180910390fd5b600160028111156126ae57fe5b600660020160009054906101000a900460ff1660028111156126cc57fe5b14612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180612fad6037913960400191505060405180910390fd5b604051806060016040528060008152602001600081526020016000600281111561274857fe5b8152506006600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083600281111561278557fe5b02179055509050505b612799838383612a1c565b505050565b600083831115829061284b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128105780820151818401526020810190506127f5565b50505050905090810190601f16801561283d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130b26021913960400191505060405180910390fd5b6128ea82600083612cdd565b61295581604051806060016040528060228152602001612dc0602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129ac81600254612ce290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130d36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612d666023913960400191505060405180910390fd5b612b33838383612cdd565b612b9e81604051806060016040528060268152602001612e9a602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c31816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120fb90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600082821115612d5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737343616e27742067697665206e6f7469636520666f72206d6f7265204c697175696469747920546f6b656e73207468616e206f776e65642e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737354726561737572792063616e2774207472616e73666572206d6f726520746f6b656e73207468616e20676976656e206e6f7469636520666f722e4275796261636b2063616e6e6f74207472616e7366657220746f6b656e732c2069742063616e206f6e6c79206275726e2e43616e6e6f74206f766572777269746520616e20616374697665206578697374696e67206e6f746963652e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546865204275796261636b20616464726573732063616e206f6e6c7920626520736574206f6e63652e54686520526f7574657220616464726573732063616e206f6e6c7920626520736574206f6e63652e5472656173757279206163636f756e7420746f6b656e732063616e206f6e6c79206265206d6f7665642062792074686520556e697377617020526f757465722e4e6f7469636520706572696f6420686173206e6f74206265656e20736574206f7220686173206e6f7420657870697265642e54686520547265617375727920616464726573732063616e206f6e6c7920626520736574206f6e63652e546865206e6f7469636520676976656e20666f7220746869732075736572206973207468652077726f6e6720746f6b656e20747970652e496e73756666696369656e74204c697175696469747920546f6b656e2062616c616e63652e54686520556e6973776170205061697220636f6e74726163742061646472657373206d757374206265207365742e4c697175696469747920506f6f6c2043726561746f722063616e6e6f74207265636569766520746f6b656e732e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546865205061697220616464726573732063616e206f6e6c7920626520736574206f6e63652e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737343616e27742067697665206e6f7469636520666f72206d6f7265204743414320746f6b656e73207468616e206f776e65642e4f6e6c7920547265617375727920616e64204c6971756964697479206d7573742067697665206e6f746963652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9bdb1ccdec115cc121dd4554014d5de69e64003189a4df6c93fb423f4d2518864736f6c63430007060033

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

000000000000000000000000000000000000000000002a5a058fc295ed000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000021476c6f62616c2043616e6e61626973204170706c69636174696f6e7320436f72700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044743414300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 200000000000000000000000
Arg [1] : name (string): Global Cannabis Applications Corp
Arg [2] : symbol (string): GCAC

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000002a5a058fc295ed000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [4] : 476c6f62616c2043616e6e61626973204170706c69636174696f6e7320436f72
Arg [5] : 7000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4743414300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4615:8155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:89:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4244:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3235:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11728:763:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4877:317:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5670:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3086:89:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5589:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12679:88:0;;;:::i;:::-;;8805:1311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6043:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3399:125:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5822:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2370:93:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8205:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6291:266:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6692:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3727:172:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5510:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7956:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3957:149:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7657:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7378:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6546:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6303:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2168:89:2;2213:13;2245:5;2238:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:89;:::o;4244:166::-;4327:4;4343:39;4352:12;:10;:12::i;:::-;4366:7;4375:6;4343:8;:39::i;:::-;4399:4;4392:11;;4244:166;;;;:::o;3235:106::-;3296:7;3322:12;;3315:19;;3235:106;:::o;11728:763:0:-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11848:1:::1;11825:25;;:11;;;;;;;;;;;:25;;;;11817:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11953:1;11922:15;:27;;;:32;;:82;;;;;11977:15;:27;;;11958:15;:46;;11922:82;11914:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12088:15;:22;;;12078:6;:32;;12070:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12200:23;12171:52:::0;::::1;;;;;;;:15;:25;;;;;;;;;;;;:52;;;;;;;;;12163:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12296:10;12315:11;;;;;;;;;;;12296:31;;12338:4;:13;;;12352:2;12356:6;12338:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;12452:31;;;;;;;;12459:1;12452:31;;;;12462:1;12452:31;;;;12465:17;12452:31;;;;;;;;;;::::0;12434:15:::1;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6898:1;11728:763:::0;;:::o;4877:317:2:-;4983:4;4999:36;5009:6;5017:9;5028:6;4999:9;:36::i;:::-;5045:121;5054:6;5062:12;:10;:12::i;:::-;5076:89;5114:6;5076:89;;;;;;;;;;;;;;;;;:11;:19;5088:6;5076:19;;;;;;;;;;;;;;;:33;5096:12;:10;:12::i;:::-;5076:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;5045:8;:121::i;:::-;5183:4;5176:11;;4877:317;;;;;:::o;5670:29:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3086:89:2:-;3135:5;3159:9;;;;;;;;;;;3152:16;;3086:89;:::o;5589:215::-;5677:4;5693:83;5702:12;:10;:12::i;:::-;5716:7;5725:50;5764:10;5725:11;:25;5737:12;:10;:12::i;:::-;5725:25;;;;;;;;;;;;;;;:34;5751:7;5725:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5693:8;:83::i;:::-;5793:4;5786:11;;5589:215;;;;:::o;12679:88:0:-;7050:7;;;;;;;;;;;7034:23;;:12;:10;:12::i;:::-;:23;;;7026:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12725:34:::1;12731:7;;;;;;;;;;;12740:18;12750:7;;;;;;;;;;;12740:9;:18::i;:::-;12725:5;:34::i;:::-;12679:88::o:0;8805:1311::-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933:1:::1;8910:25;;:11;;;;;;;;;;;:25;;;;8902:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9012:8;;;;;;;;;;;9005:15;;:3;:15;;;:39;;;;9039:4;9024:20;;:3;:20;;;9005:39;8997:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9107:12;9154:9;9141:10;:22;9122:15;:42;9107:57;;9177:19;9219:8;;;;;;;;;;;9212:15;;:3;:15;;;9209:841;;;9282:1;9252:14;:26;;;:31;:80;;;;9306:14;:26;;;9287:15;:45;;9252:80;9244:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9413:14;9423:3;9413:9;:14::i;:::-;9403:6;:24;;9395:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9509:14;9497:26;;9555:31;;;;;;;;9562:6;9555:31;;;;9570:4;9555:31;;;;9576:9;9555:31;;;;;;;;;;::::0;9538:14:::1;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9209:841;;;9667:1;9636:15;:27;;;:32;:82;;;;9691:15;:27;;;9672:15;:46;;9636:82;9628:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9781:10;9800:11;;;;;;;;;;;9781:31;;9845:4;:14;;;9860:3;9845:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;9835:6;:29;;9827:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9951:23;9939:35;;10007:31;;;;;;;;10014:6;10007:31;;;;10022:4;10007:31;;;;10028:9;10007:31;;;;;;;;;;::::0;9989:15:::1;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9209:841;;10079:3;10067:41;;;10084:6;10092:4;10098:9;10067:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6898:1;;8805:1311:::0;;;:::o;6043:23::-;;;;;;;;;;;;;:::o;3399:125:2:-;3473:7;3499:9;:18;3509:7;3499:18;;;;;;;;;;;;;;;;3492:25;;3399:125;;;:::o;5822:20:0:-;;;;;;;;;;;;;:::o;2370:93:2:-;2417:13;2449:7;2442:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2370:93;:::o;8205:177:0:-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8301:1:::1;8278:25;;:11;;;;;;;;;;;:25;;;8270:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8371:3;8357:11;;:17;;;;;;;;;;;;;;;;;;8205:177:::0;:::o;6291:266:2:-;6384:4;6400:129;6409:12;:10;:12::i;:::-;6423:7;6432:96;6471:15;6432:96;;;;;;;;;;;;;;;;;:11;:25;6444:12;:10;:12::i;:::-;6432:25;;;;;;;;;;;;;;;:34;6458:7;6432:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;6400:8;:129::i;:::-;6546:4;6539:11;;6291:266;;;;:::o;6692:26:0:-;;;;;;;;;;;;;:::o;3727:172:2:-;3813:4;3829:42;3839:12;:10;:12::i;:::-;3853:9;3864:6;3829:9;:42::i;:::-;3888:4;3881:11;;3727:172;;;;:::o;5510:28:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7956:164::-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8042:1:::1;8024:20;;:6;;;;;;;;;;;:20;;;8016:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8109:3;8100:6;;:12;;;;;;;;;;;;;;;;;;7956:164:::0;:::o;3957:149:2:-;4046:7;4072:11;:18;4084:5;4072:18;;;;;;;;;;;;;;;:27;4091:7;4072:27;;;;;;;;;;;;;;;;4065:34;;3957:149;;;;:::o;7657:172:0:-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7747:1:::1;7727:22;;:8;;;;;;;;;;;:22;;;7719:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7818:3;7807:8;;:14;;;;;;;;;;;;;;;;;;7657:172:::0;:::o;7378:168::-;6859:5;;;;;;;;;;;6843:21;;:12;:10;:12::i;:::-;:21;;;6835:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7466:1:::1;7447:21;;:7;;;;;;;;;;;:21;;;7439:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7535:3;7525:7;;:13;;;;;;;;;;;;;;;;;;7378:168:::0;:::o;6546:21::-;;;;;;;;;;;;;:::o;6303:22::-;;;;;;;;;;;;;:::o;2690:175:1:-;2748:7;2767:9;2783:1;2779;:5;2767:17;;2807:1;2802;:6;;2794:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2857:1;2850:8;;;2690:175;;;;:::o;598:104:4:-;651:15;685:10;678:17;;598:104;:::o;9355:340:2:-;9473:1;9456:19;;:5;:19;;;;9448:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9553:1;9534:21;;:7;:21;;;;9526:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:6;9605:11;:18;9617:5;9605:18;;;;;;;;;;;;;;;:27;9624:7;9605:27;;;;;;;;;;;;;;;:36;;;;9672:7;9656:32;;9665:5;9656:32;;;9681:6;9656:32;;;;;;;;;;;;;;;;;;9355:340;;;:::o;10407:1086:0:-;10527:5;;;;;;;;;;;10514:18;;:9;:18;;;;10506:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10611:7;;;;;;;;;;;10601:17;;:6;:17;;;;10593:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10696:8;;;;;;;;;;;10686:18;;:6;:18;;;10683:748;;;10745:6;;;;;;;;;;;10729:22;;:12;:10;:12::i;:::-;:22;;;10721:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10873:1;10843:14;:26;;;:31;;:80;;;;;10897:14;:26;;;10878:15;:45;;10843:80;10835:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11011:14;:21;;;11001:6;:31;;10993:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11146:14;11118:42;;;;;;;;:14;:24;;;;;;;;;;;;:42;;;;;;;;;11110:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11388:31;;;;;;;;11395:1;11388:31;;;;11398:1;11388:31;;;;11401:17;11388:31;;;;;;;;;;;11371:14;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10683:748;11443:42;11459:6;11467:9;11478:6;11443:15;:42::i;:::-;10407:1086;;;:::o;5432:163:1:-;5518:7;5550:1;5545;:6;;5553:12;5537:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5587:1;5583;:5;5576:12;;5432:163;;;;;:::o;8522:410:2:-;8624:1;8605:21;;:7;:21;;;;8597:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8675:49;8696:7;8713:1;8717:6;8675:20;:49::i;:::-;8756:68;8779:6;8756:68;;;;;;;;;;;;;;;;;:9;:18;8766:7;8756:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;8735:9;:18;8745:7;8735:18;;;;;;;;;;;;;;;:89;;;;8849:24;8866:6;8849:12;;:16;;:24;;;;:::i;:::-;8834:12;:39;;;;8914:1;8888:37;;8897:7;8888:37;;;8918:6;8888:37;;;;;;;;;;;;;;;;;;8522:410;;:::o;7031:530::-;7154:1;7136:20;;:6;:20;;;;7128:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7237:1;7216:23;;:9;:23;;;;7208:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7290:47;7311:6;7319:9;7330:6;7290:20;:47::i;:::-;7368:71;7390:6;7368:71;;;;;;;;;;;;;;;;;:9;:17;7378:6;7368:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7348:9;:17;7358:6;7348:17;;;;;;;;;;;;;;;:91;;;;7472:32;7497:6;7472:9;:20;7482:9;7472:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7449:9;:20;7459:9;7449:20;;;;;;;;;;;;;;;:55;;;;7536:9;7519:35;;7528:6;7519:35;;;7547:6;7519:35;;;;;;;;;;;;;;;;;;7031:530;;;:::o;10701:92::-;;;;:::o;3136:155:1:-;3194:7;3226:1;3221;:6;;3213:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3283:1;3279;:5;3272:12;;3136:155;;;;:::o

Swarm Source

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