ERC-20
Overview
Max Total Supply
175,676,330.5228 FLINT
Holders
173
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5 FLINTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FLINT
Compiler Version
v0.5.10+commit.5a6ea5b1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-07 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is ERC20 { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) canMint internal returns (bool) { _mint(_to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() canMint internal returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract FLINT is MintableToken, Ownable, Pausable { using SafeMath for uint256; //The name of the token string public constant name = "MintFlint Token"; //The token symbol string public constant symbol = "FLINT"; //The precision used in the balance calculations in contract uint8 public constant decimals = 18; // DEV fund address that holds the 21.9152% of total FLINT supply address public devFund = 0xD674719E383Dab1626c83a5D5A1956dA2F5b3b05; // Sambhav's address that holds the 20.06% of total FLINT supply address public sambhav = 0xcFc43257606C6a642d9438dCd82bf5b39A17dbAB; // Pondsea's address that holds the 6.0174% of total FLINT supply address public pondsea = 0xEf628A29668C00d5C7C4D915F07188dC96cF24eb; // Austin's address that holds the 1% of total FLINT supply address public austin = 0x6801c3f0BdCA16E0B3206b8c804e94F5d01cA835; // Artem's address that holds the 1% of total FLINT supply address public artem = 0x3C7AAD7b693E94f13b61d4Be4ABaeaf802b2E3B5; // Kiran's address that holds the 0.0074% of total FLINT supply address public kiran = 0x3a312D7D725BB257b725c2EC5F945304E9EcF17B; constructor() public { } // Standard mint that doesn't increase the balance of "special" holders function mintStandard(address _to, uint256 _amount) public whenNotPaused onlyOwner canMint returns (bool) { return mint(_to, _amount); } // Standard mint that increase the balance of "special" holders according to their total share of FLINT tokens function mintSpecial(address _to, uint256 _amount) public whenNotPaused onlyOwner canMint returns (bool) { // to keep the proper share of special addresses we should calculate the resulting_amount of total supply increase // to do this we should mul the amount by 2, total special holders share is 50%, so it's result of equation // resulting_amount = _amount + 0,5 * resulting_amount, which turns to resulting_amount = 2 * _amount uint256 resulting_amount = _amount.mul(2); require(mint(devFund, resulting_amount.mul(219152).div(1000000))); require(mint(sambhav, resulting_amount.mul(2006).div(10000))); require(mint(pondsea, resulting_amount.mul(60174).div(1000000))); require(mint(austin, resulting_amount.div(100))); require(mint(artem, resulting_amount.div(100))); require(mint(kiran, resulting_amount.mul(74).div(1000000))); return mint(_to, _amount); } // Finish minting in case we'd like to stop it function finishMint() public onlyOwner canMint returns (bool) { return finishMinting(); } function setDevFund(address _new) public onlyOwner { devFund = _new; } function setSambhav(address _new) public onlyOwner { sambhav = _new; } function setPondsea(address _new) public onlyOwner { pondsea = _new; } function setAustin(address _new) public onlyOwner { austin = _new; } function setArtem(address _new) public onlyOwner { artem = _new; } function setKiran(address _new) public onlyOwner { kiran = _new; } function transfer(address recipient, uint256 amount) whenNotPaused public returns (bool) { return super.transfer(recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) whenNotPaused public returns (bool) { return super.transferFrom(sender, recipient, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"sambhav","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintStandard","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kiran","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setKiran","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"devFund","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setAustin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setSambhav","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setPondsea","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setDevFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_new","type":"address"}],"name":"setArtem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintSpecial","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"austin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"artem","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pondsea","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040526003805460ff191690556005805474d674719e383dab1626c83a5d5a1956da2f5b3b0500610100600160a81b0319909116179055600680546001600160a01b031990811673cfc43257606c6a642d9438dcd82bf5b39a17dbab1790915560078054821673ef628a29668c00d5c7c4d915f07188dc96cf24eb179055600880548216736801c3f0bdca16e0b3206b8c804e94f5d01ca835179055600980548216733c7aad7b693e94f13b61d4be4abaeaf802b2e3b5179055600a8054909116733a312d7d725bb257b725c2ec5f945304e9ecf17b179055348015620000e757600080fd5b5060038054610100338102610100600160a81b0319909216919091179182905560405191046001600160a01b0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362000152336001600160e01b036200016216565b6005805460ff19169055620002de565b6200017d816004620001b460201b620018ec1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620001c982826001600160e01b036200025b16565b156200023657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001df86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611b0a80620002ee6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a90c07d9116100b8578063de1c4bf81161007c578063de1c4bf814610635578063e3ad85ba1461063d578063e4cc18be14610645578063eb6efc211461064d578063f2fde38b1461065557610227565b8063a90c07d914610569578063ae4db9191461058f578063c66f62a6146105b5578063c7ec3be2146105db578063dd62ed3e1461060757610227565b80638da5cb5b116100ff5780638da5cb5b146104f95780638f32d59b1461050157806395d89b4114610509578063a457c2d714610511578063a9059cbb1461053d57610227565b806370a082311461049d578063715018a6146104c357806382dc1ec4146104cb5780638456cb59146104f157610227565b806339509351116101b357806346fbf68e1161018257806346fbf68e1461041b5780635a8d1f08146104415780635c975abb14610467578063660793b81461046f5780636ef8d66d1461049557610227565b806339509351146103b75780633d9707a4146103e35780633f4ba83a1461040b5780634390d2a81461041357610227565b806318160ddd116101fa57806318160ddd1461031557806323b872dd1461032f5780632694d8d3146103655780632a64387914610391578063313ce5671461039957610227565b80630264e6a61461022c57806305d2035b1461025057806306fdde031461026c578063095ea7b3146102e9575b600080fd5b61023461067b565b604080516001600160a01b039092168252519081900360200190f35b61025861068a565b604080519115158252519081900360200190f35b610274610693565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ae578181015183820152602001610296565b50505050905090810190601f1680156102db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610258600480360360408110156102ff57600080fd5b506001600160a01b0381351690602001356106be565b61031d6106d5565b60408051918252519081900360200190f35b6102586004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106db565b6102586004803603604081101561037b57600080fd5b506001600160a01b03813516906020013561073c565b6102346107f2565b6103a1610801565b6040805160ff9092168252519081900360200190f35b610258600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610806565b610409600480360360208110156103f957600080fd5b50356001600160a01b0316610847565b005b6104096108b0565b610234610981565b6102586004803603602081101561043157600080fd5b50356001600160a01b0316610995565b6104096004803603602081101561045757600080fd5b50356001600160a01b03166109a8565b610258610a11565b6104096004803603602081101561048557600080fd5b50356001600160a01b0316610a1a565b610409610a83565b61031d600480360360208110156104b357600080fd5b50356001600160a01b0316610a8e565b610409610aa9565b610409600480360360208110156104e157600080fd5b50356001600160a01b0316610b40565b610409610b90565b610234610c61565b610258610c75565b610274610c8b565b6102586004803603604081101561052757600080fd5b506001600160a01b038135169060200135610cac565b6102586004803603604081101561055357600080fd5b506001600160a01b038135169060200135610ce8565b6104096004803603602081101561057f57600080fd5b50356001600160a01b0316610d40565b610409600480360360208110156105a557600080fd5b50356001600160a01b0316610da9565b610409600480360360208110156105cb57600080fd5b50356001600160a01b0316610e18565b610258600480360360408110156105f157600080fd5b506001600160a01b038135169060200135610e81565b61031d6004803603604081101561061d57600080fd5b506001600160a01b0381358116916020013516611071565b61023461109c565b6102346110ab565b6102586110ba565b610234611120565b6104096004803603602081101561066b57600080fd5b50356001600160a01b031661112f565b6006546001600160a01b031681565b60035460ff1681565b6040518060400160405280600f81526020016e26b4b73a233634b73a102a37b5b2b760891b81525081565b60006106cb33848461117f565b5060015b92915050565b60025490565b60055460009060ff1615610729576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61073484848461126b565b949350505050565b60055460009060ff161561078a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610792610c75565b6107d1576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff16156107e157600080fd5b6107eb83836112bd565b9392505050565b600a546001600160a01b031681565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106cb918590610842908663ffffffff6112da16565b61117f565b61084f610c75565b61088e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6108b933610995565b6108f45760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b60055460ff16610942576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60055461010090046001600160a01b031681565b60006106cf60048363ffffffff61133416565b6109b0610c75565b6109ef576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b610a22610c75565b610a61576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a8c3361139b565b565b6001600160a01b031660009081526020819052604090205490565b610ab1610c75565b610af0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360038054610100600160a81b0319169055565b610b4933610995565b610b845760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b610b8d816113e3565b50565b610b9933610995565b610bd45760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b60055460ff1615610c1f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60035461010090046001600160a01b031690565b60035461010090046001600160a01b0316331490565b60405180604001604052806005815260200164119312539560da1b81525081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106cb918590610842908663ffffffff61142b16565b60055460009060ff1615610d36576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107eb8383611488565b610d48610c75565b610d87576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610db1610c75565b610df0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e20610c75565b610e5f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60055460009060ff1615610ecf576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610ed7610c75565b610f16576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff1615610f2657600080fd5b6000610f3983600263ffffffff61149516565b600554909150610f769061010090046001600160a01b0316610f71620f4240610f658562035810611495565b9063ffffffff6114ee16565b6112bd565b610f7f57600080fd5b600654610fa7906001600160a01b0316610f71612710610f65856107d663ffffffff61149516565b610fb057600080fd5b600754610fd9906001600160a01b0316610f71620f4240610f658561eb0e63ffffffff61149516565b610fe257600080fd5b600854611003906001600160a01b0316610f7183606463ffffffff6114ee16565b61100c57600080fd5b60095461102d906001600160a01b0316610f7183606463ffffffff6114ee16565b61103657600080fd5b600a5461105e906001600160a01b0316610f71620f4240610f6585604a63ffffffff61149516565b61106757600080fd5b61073484846112bd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6008546001600160a01b031681565b6009546001600160a01b031681565b60006110c4610c75565b611103576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff161561111357600080fd5b61111b611558565b905090565b6007546001600160a01b031681565b611137610c75565b611176576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b610b8d816115a7565b6001600160a01b0383166111c45760405162461bcd60e51b8152600401808060200182810382526024815260200180611ab26024913960400191505060405180910390fd5b6001600160a01b0382166112095760405162461bcd60e51b81526004018080602001828103825260228152602001806119e76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000611278848484611653565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546112b3918691610842908663ffffffff61142b16565b5060019392505050565b60035460009060ff16156112d057600080fd5b6106cb8383611795565b6000828201838110156107eb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006001600160a01b03821661137b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a6b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113ac60048263ffffffff61188516565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6113f460048263ffffffff6118ec16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600082821115611482576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006106cb338484611653565b6000826114a4575060006106cf565b828202828482816114b157fe5b04146107eb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a2a6021913960400191505060405180910390fd5b6000808211611544576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161154f57fe5b04949350505050565b60035460009060ff161561156b57600080fd5b6003805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b6001600160a01b0381166115ec5760405162461bcd60e51b81526004018080602001828103825260268152602001806119c16026913960400191505060405180910390fd5b6003546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166116985760405162461bcd60e51b8152600401808060200182810382526025815260200180611a8d6025913960400191505060405180910390fd5b6001600160a01b0382166116dd5760405162461bcd60e51b815260040180806020018281038252602381526020018061196e6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611706908263ffffffff61142b16565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461173b908263ffffffff6112da16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166117f0576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611803908263ffffffff6112da16565b6002556001600160a01b03821660009081526020819052604090205461182f908263ffffffff6112da16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61188f8282611334565b6118ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a096021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6118f68282611334565b15611948576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820822c55288883bacced8b21c3c70c1157fb03133bae0bd6c16979f5fa1e0f428d64736f6c634300050a0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a90c07d9116100b8578063de1c4bf81161007c578063de1c4bf814610635578063e3ad85ba1461063d578063e4cc18be14610645578063eb6efc211461064d578063f2fde38b1461065557610227565b8063a90c07d914610569578063ae4db9191461058f578063c66f62a6146105b5578063c7ec3be2146105db578063dd62ed3e1461060757610227565b80638da5cb5b116100ff5780638da5cb5b146104f95780638f32d59b1461050157806395d89b4114610509578063a457c2d714610511578063a9059cbb1461053d57610227565b806370a082311461049d578063715018a6146104c357806382dc1ec4146104cb5780638456cb59146104f157610227565b806339509351116101b357806346fbf68e1161018257806346fbf68e1461041b5780635a8d1f08146104415780635c975abb14610467578063660793b81461046f5780636ef8d66d1461049557610227565b806339509351146103b75780633d9707a4146103e35780633f4ba83a1461040b5780634390d2a81461041357610227565b806318160ddd116101fa57806318160ddd1461031557806323b872dd1461032f5780632694d8d3146103655780632a64387914610391578063313ce5671461039957610227565b80630264e6a61461022c57806305d2035b1461025057806306fdde031461026c578063095ea7b3146102e9575b600080fd5b61023461067b565b604080516001600160a01b039092168252519081900360200190f35b61025861068a565b604080519115158252519081900360200190f35b610274610693565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ae578181015183820152602001610296565b50505050905090810190601f1680156102db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610258600480360360408110156102ff57600080fd5b506001600160a01b0381351690602001356106be565b61031d6106d5565b60408051918252519081900360200190f35b6102586004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106db565b6102586004803603604081101561037b57600080fd5b506001600160a01b03813516906020013561073c565b6102346107f2565b6103a1610801565b6040805160ff9092168252519081900360200190f35b610258600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610806565b610409600480360360208110156103f957600080fd5b50356001600160a01b0316610847565b005b6104096108b0565b610234610981565b6102586004803603602081101561043157600080fd5b50356001600160a01b0316610995565b6104096004803603602081101561045757600080fd5b50356001600160a01b03166109a8565b610258610a11565b6104096004803603602081101561048557600080fd5b50356001600160a01b0316610a1a565b610409610a83565b61031d600480360360208110156104b357600080fd5b50356001600160a01b0316610a8e565b610409610aa9565b610409600480360360208110156104e157600080fd5b50356001600160a01b0316610b40565b610409610b90565b610234610c61565b610258610c75565b610274610c8b565b6102586004803603604081101561052757600080fd5b506001600160a01b038135169060200135610cac565b6102586004803603604081101561055357600080fd5b506001600160a01b038135169060200135610ce8565b6104096004803603602081101561057f57600080fd5b50356001600160a01b0316610d40565b610409600480360360208110156105a557600080fd5b50356001600160a01b0316610da9565b610409600480360360208110156105cb57600080fd5b50356001600160a01b0316610e18565b610258600480360360408110156105f157600080fd5b506001600160a01b038135169060200135610e81565b61031d6004803603604081101561061d57600080fd5b506001600160a01b0381358116916020013516611071565b61023461109c565b6102346110ab565b6102586110ba565b610234611120565b6104096004803603602081101561066b57600080fd5b50356001600160a01b031661112f565b6006546001600160a01b031681565b60035460ff1681565b6040518060400160405280600f81526020016e26b4b73a233634b73a102a37b5b2b760891b81525081565b60006106cb33848461117f565b5060015b92915050565b60025490565b60055460009060ff1615610729576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61073484848461126b565b949350505050565b60055460009060ff161561078a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610792610c75565b6107d1576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff16156107e157600080fd5b6107eb83836112bd565b9392505050565b600a546001600160a01b031681565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106cb918590610842908663ffffffff6112da16565b61117f565b61084f610c75565b61088e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6108b933610995565b6108f45760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b60055460ff16610942576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60055461010090046001600160a01b031681565b60006106cf60048363ffffffff61133416565b6109b0610c75565b6109ef576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b610a22610c75565b610a61576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a8c3361139b565b565b6001600160a01b031660009081526020819052604090205490565b610ab1610c75565b610af0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360038054610100600160a81b0319169055565b610b4933610995565b610b845760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b610b8d816113e3565b50565b610b9933610995565b610bd45760405162461bcd60e51b81526004018080602001828103825260308152602001806119916030913960400191505060405180910390fd5b60055460ff1615610c1f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60035461010090046001600160a01b031690565b60035461010090046001600160a01b0316331490565b60405180604001604052806005815260200164119312539560da1b81525081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106cb918590610842908663ffffffff61142b16565b60055460009060ff1615610d36576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107eb8383611488565b610d48610c75565b610d87576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610db1610c75565b610df0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e20610c75565b610e5f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60055460009060ff1615610ecf576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610ed7610c75565b610f16576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff1615610f2657600080fd5b6000610f3983600263ffffffff61149516565b600554909150610f769061010090046001600160a01b0316610f71620f4240610f658562035810611495565b9063ffffffff6114ee16565b6112bd565b610f7f57600080fd5b600654610fa7906001600160a01b0316610f71612710610f65856107d663ffffffff61149516565b610fb057600080fd5b600754610fd9906001600160a01b0316610f71620f4240610f658561eb0e63ffffffff61149516565b610fe257600080fd5b600854611003906001600160a01b0316610f7183606463ffffffff6114ee16565b61100c57600080fd5b60095461102d906001600160a01b0316610f7183606463ffffffff6114ee16565b61103657600080fd5b600a5461105e906001600160a01b0316610f71620f4240610f6585604a63ffffffff61149516565b61106757600080fd5b61073484846112bd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6008546001600160a01b031681565b6009546001600160a01b031681565b60006110c4610c75565b611103576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b60035460ff161561111357600080fd5b61111b611558565b905090565b6007546001600160a01b031681565b611137610c75565b611176576040805162461bcd60e51b81526020600482018190526024820152600080516020611a4b833981519152604482015290519081900360640190fd5b610b8d816115a7565b6001600160a01b0383166111c45760405162461bcd60e51b8152600401808060200182810382526024815260200180611ab26024913960400191505060405180910390fd5b6001600160a01b0382166112095760405162461bcd60e51b81526004018080602001828103825260228152602001806119e76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000611278848484611653565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546112b3918691610842908663ffffffff61142b16565b5060019392505050565b60035460009060ff16156112d057600080fd5b6106cb8383611795565b6000828201838110156107eb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006001600160a01b03821661137b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a6b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113ac60048263ffffffff61188516565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6113f460048263ffffffff6118ec16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600082821115611482576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006106cb338484611653565b6000826114a4575060006106cf565b828202828482816114b157fe5b04146107eb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a2a6021913960400191505060405180910390fd5b6000808211611544576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161154f57fe5b04949350505050565b60035460009060ff161561156b57600080fd5b6003805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b6001600160a01b0381166115ec5760405162461bcd60e51b81526004018080602001828103825260268152602001806119c16026913960400191505060405180910390fd5b6003546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166116985760405162461bcd60e51b8152600401808060200182810382526025815260200180611a8d6025913960400191505060405180910390fd5b6001600160a01b0382166116dd5760405162461bcd60e51b815260040180806020018281038252602381526020018061196e6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611706908263ffffffff61142b16565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461173b908263ffffffff6112da16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166117f0576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611803908263ffffffff6112da16565b6002556001600160a01b03821660009081526020819052604090205461182f908263ffffffff6112da16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61188f8282611334565b6118ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a096021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6118f68282611334565b15611948576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820822c55288883bacced8b21c3c70c1157fb03133bae0bd6c16979f5fa1e0f428d64736f6c634300050a0032
Deployed Bytecode Sourcemap
21854:3611:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21854:3611:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22424:67;;;:::i;:::-;;;;-1:-1:-1;;;;;22424:67:0;;;;;;;;;;;;;;14790:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;21977:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21977:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8865:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8865:148:0;;;;;;;;:::i;7888:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;25282:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25282:180:0;;;;;;;;;;;;;;;;;:::i;23176:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23176:150:0;;;;;;;;:::i;22986:65::-;;;:::i;22167:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10149:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10149:206:0;;;;;;;;:::i;25038:80::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25038:80:0;-1:-1:-1;;;;;25038:80:0;;:::i;:::-;;19358:118;;;:::i;22280:67::-;;;:::i;16940:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16940:109:0;-1:-1:-1;;;;;16940:109:0;;:::i;24860:82::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24860:82:0;-1:-1:-1;;;;;24860:82:0;;:::i;18567:78::-;;;:::i;24676:84::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24676:84:0;-1:-1:-1;;;;;24676:84:0;;:::i;17157:77::-;;;:::i;8042:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8042:110:0;-1:-1:-1;;;;;8042:110:0;;:::i;21108:140::-;;;:::i;17057:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17057:92:0;-1:-1:-1;;;;;17057:92:0;;:::i;19147:116::-;;;:::i;20297:79::-;;;:::i;20663:92::-;;;:::i;22055:39::-;;;:::i;10858:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10858:216:0;;;;;;;;:::i;25126:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25126:148:0;;;;;;;;:::i;24768:84::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24768:84:0;-1:-1:-1;;;;;24768:84:0;;:::i;24584:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24584:84:0;-1:-1:-1;;;;;24584:84:0;;:::i;24950:80::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24950:80:0;-1:-1:-1;;;;;24950:80:0;;:::i;23450:963::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23450:963:0;;;;;;;;:::i;8584:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8584:134:0;;;;;;;;;;:::i;22708:66::-;;;:::i;22845:65::-;;;:::i;24473:103::-;;;:::i;22569:67::-;;;:::i;21403:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21403:109:0;-1:-1:-1;;;;;21403:109:0;;:::i;22424:67::-;;;-1:-1:-1;;;;;22424:67:0;;:::o;14790:35::-;;;;;;:::o;21977:47::-;;;;;;;;;;;;;;-1:-1:-1;;;21977:47:0;;;;:::o;8865:148::-;8930:4;8947:36;8956:10;8968:7;8977:5;8947:8;:36::i;:::-;-1:-1:-1;9001:4:0;8865:148;;;;;:::o;7888:91::-;7959:12;;7888:91;:::o;25282:180::-;18804:7;;25385:4;;18804:7;;18803:8;18795:37;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;;;;25409:45;25428:6;25436:9;25447:6;25409:18;:45::i;:::-;25402:52;25282:180;-1:-1:-1;;;;25282:180:0:o;23176:150::-;18804:7;;23276:4;;18804:7;;18803:8;18795:37;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;;;;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;14869:15;;;;14868:16;14860:25;;;;;;23300:18;23305:3;23310:7;23300:4;:18::i;:::-;23293:25;23176:150;-1:-1:-1;;;23176:150:0:o;22986:65::-;;;-1:-1:-1;;;;;22986:65:0;;:::o;22167:35::-;22200:2;22167:35;:::o;10149:206::-;10255:10;10229:4;10276:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10276:32:0;;;;;;;;;;10229:4;;10246:79;;10267:7;;10276:48;;10313:10;10276:48;:36;:48;:::i;:::-;10246:8;:79::i;25038:80::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;25098:5;:12;;-1:-1:-1;;;;;;25098:12:0;-1:-1:-1;;;;;25098:12:0;;;;;;;;;;25038:80::o;19358:118::-;16839:20;16848:10;16839:8;:20::i;:::-;16831:81;;;;-1:-1:-1;;;16831:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19003:7;;;;18995:40;;;;;-1:-1:-1;;;18995:40:0;;;;;;;;;;;;-1:-1:-1;;;18995:40:0;;;;;;;;;;;;;;;19417:7;:15;;-1:-1:-1;;19417:15:0;;;19448:20;;;19457:10;19448:20;;;;;;;;;;;;;19358:118::o;22280:67::-;;;;;;-1:-1:-1;;;;;22280:67:0;;:::o;16940:109::-;16996:4;17020:21;:8;17033:7;17020:21;:12;:21;:::i;24860:82::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;24921:6;:13;;-1:-1:-1;;;;;;24921:13:0;-1:-1:-1;;;;;24921:13:0;;;;;;;;;;24860:82::o;18567:78::-;18630:7;;;;18567:78;:::o;24676:84::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;24738:7;:14;;-1:-1:-1;;;;;;24738:14:0;-1:-1:-1;;;;;24738:14:0;;;;;;;;;;24676:84::o;17157:77::-;17201:25;17215:10;17201:13;:25::i;:::-;17157:77::o;8042:110::-;-1:-1:-1;;;;;8126:18:0;8099:7;8126:18;;;;;;;;;;;;8042:110::o;21108:140::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;21191:6;;21170:40;;21207:1;;21191:6;;;-1:-1:-1;;;;;21191:6:0;;21170:40;;21207:1;;21170:40;21221:6;:19;;-1:-1:-1;;;;;;21221:19:0;;;21108:140::o;17057:92::-;16839:20;16848:10;16839:8;:20::i;:::-;16831:81;;;;-1:-1:-1;;;16831:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17122:19;17133:7;17122:10;:19::i;:::-;17057:92;:::o;19147:116::-;16839:20;16848:10;16839:8;:20::i;:::-;16831:81;;;;-1:-1:-1;;;16831:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18804:7;;;;18803:8;18795:37;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;;;;19207:7;:14;;-1:-1:-1;;19207:14:0;19217:4;19207:14;;;19237:18;;;19244:10;19237:18;;;;;;;;;;;;;19147:116::o;20297:79::-;20362:6;;;;;-1:-1:-1;;;;;20362:6:0;;20297:79::o;20663:92::-;20741:6;;;;;-1:-1:-1;;;;;20741:6:0;20727:10;:20;;20663:92::o;22055:39::-;;;;;;;;;;;;;;-1:-1:-1;;;22055:39:0;;;;:::o;10858:216::-;10969:10;10943:4;10990:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10990:32:0;;;;;;;;;;10943:4;;10960:84;;10981:7;;10990:53;;11027:15;10990:53;:36;:53;:::i;25126:148::-;18804:7;;25209:4;;18804:7;;18803:8;18795:37;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;;;;25233:33;25248:9;25259:6;25233:14;:33::i;24768:84::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;24830:7;:14;;-1:-1:-1;;;;;;24830:14:0;-1:-1:-1;;;;;24830:14:0;;;;;;;;;;24768:84::o;24584:::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;24646:7;:14;;-1:-1:-1;;;;;24646:14:0;;;;;-1:-1:-1;;;;;;24646:14:0;;;;;;;;;24584:84::o;24950:80::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;25010:5;:12;;-1:-1:-1;;;;;;25010:12:0;-1:-1:-1;;;;;25010:12:0;;;;;;;;;;24950:80::o;23450:963::-;18804:7;;23549:4;;18804:7;;18803:8;18795:37;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;-1:-1:-1;;;18795:37:0;;;;;;;;;;;;;;;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;14869:15;;;;14868:16;14860:25;;;;;;23918:24;23945:14;:7;23957:1;23945:14;:11;:14;:::i;:::-;23983:7;;23918:41;;-1:-1:-1;23978:56:0;;23983:7;;;-1:-1:-1;;;;;23983:7:0;23992:41;24025:7;23992:28;23918:41;24013:6;23992:20;:28::i;:::-;:32;:41;:32;:41;:::i;:::-;23978:4;:56::i;:::-;23970:65;;;;;;24059:7;;24054:52;;-1:-1:-1;;;;;24059:7:0;24068:37;24099:5;24068:26;:16;24089:4;24068:26;:20;:26;:::i;24054:52::-;24046:61;;;;;;24131:7;;24126:55;;-1:-1:-1;;;;;24131:7:0;24140:40;24172:7;24140:27;:16;24161:5;24140:27;:20;:27;:::i;24126:55::-;24118:64;;;;;;24206:6;;24201:39;;-1:-1:-1;;;;;24206:6:0;24214:25;:16;24235:3;24214:25;:20;:25;:::i;24201:39::-;24193:48;;;;;;24265:5;;24260:38;;-1:-1:-1;;;;;24265:5:0;24272:25;:16;24293:3;24272:25;:20;:25;:::i;24260:38::-;24252:47;;;;;;24323:5;;24318:50;;-1:-1:-1;;;;;24323:5:0;24330:37;24359:7;24330:24;:16;24351:2;24330:24;:20;:24;:::i;24318:50::-;24310:59;;;;;;24387:18;24392:3;24397:7;24387:4;:18::i;8584:134::-;-1:-1:-1;;;;;8683:18:0;;;8656:7;8683:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8584:134::o;22708:66::-;;;-1:-1:-1;;;;;22708:66:0;;:::o;22845:65::-;;;-1:-1:-1;;;;;22845:65:0;;:::o;24473:103::-;24529:4;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;14869:15;;;;14868:16;14860:25;;;;;;24553:15;:13;:15::i;:::-;24546:22;;24473:103;:::o;22569:67::-;;;-1:-1:-1;;;;;22569:67:0;;:::o;21403:109::-;20509:9;:7;:9::i;:::-;20501:54;;;;;-1:-1:-1;;;20501:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20501:54:0;;;;;;;;;;;;;;;21476:28;21495:8;21476:18;:28::i;13660:335::-;-1:-1:-1;;;;;13753:19:0;;13745:68;;;;-1:-1:-1;;;13745:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13832:21:0;;13824:68;;;;-1:-1:-1;;;13824:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13905:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13956:31;;;;;;;;;;;;;;;;;13660:335;;;:::o;9484:256::-;9573:4;9590:36;9600:6;9608:9;9619:6;9590:9;:36::i;:::-;-1:-1:-1;;;;;9666:19:0;;;;;;:11;:19;;;;;;;;9654:10;9666:31;;;;;;;;;9637:73;;9646:6;;9666:43;;9702:6;9666:43;:35;:43;:::i;9637:73::-;-1:-1:-1;9728:4:0;9484:256;;;;;:::o;15143:126::-;14869:15;;15213:4;;14869:15;;14868:16;14860:25;;;;;;15226:19;15232:3;15237:7;15226:5;:19::i;3644:181::-;3702:7;3734:5;;;3758:6;;;;3750:46;;;;;-1:-1:-1;;;3750:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16315:203;16387:4;-1:-1:-1;;;;;16412:21:0;;16404:68;;;;-1:-1:-1;;;16404:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16490:20:0;:11;:20;;;;;;;;;;;;;;;16315:203::o;17372:130::-;17432:24;:8;17448:7;17432:24;:15;:24;:::i;:::-;17472:22;;-1:-1:-1;;;;;17472:22:0;;;;;;;;17372:130;:::o;17242:122::-;17299:21;:8;17312:7;17299:21;:12;:21;:::i;:::-;17336:20;;-1:-1:-1;;;;;17336:20:0;;;;;;;;17242:122;:::o;4100:184::-;4158:7;4191:1;4186;:6;;4178:49;;;;;-1:-1:-1;;;4178:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4250:5:0;;;4100:184::o;8365:156::-;8434:4;8451:40;8461:10;8473:9;8484:6;8451:9;:40::i;4535:470::-;4593:7;4837:6;4833:47;;-1:-1:-1;4867:1:0;4860:8;;4833:47;4904:5;;;4908:1;4904;:5;:1;4928:5;;;;;:10;4920:56;;;;-1:-1:-1;;;4920:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5473:333;5531:7;5630:1;5626;:5;5618:44;;;;;-1:-1:-1;;;5618:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5673:9;5689:1;5685;:5;;;;;;;5473:333;-1:-1:-1;;;;5473:333:0:o;15389:136::-;14869:15;;15440:4;;14869:15;;14868:16;14860:25;;;;;;15453:15;:22;;-1:-1:-1;;15453:22:0;15471:4;15453:22;;;15487:14;;;;15453:15;;15487:14;-1:-1:-1;15515:4:0;15389:136;:::o;21618:229::-;-1:-1:-1;;;;;21692:22:0;;21684:73;;;;-1:-1:-1;;;21684:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21794:6;;21773:38;;-1:-1:-1;;;;;21773:38:0;;;;21794:6;;;;;21773:38;;;;;21822:6;:17;;-1:-1:-1;;;;;21822:17:0;;;;;-1:-1:-1;;;;;;21822:17:0;;;;;;;;;21618:229::o;11564:429::-;-1:-1:-1;;;;;11662:20:0;;11654:70;;;;-1:-1:-1;;;11654:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11743:23:0;;11735:71;;;;-1:-1:-1;;;11735:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11839:17:0;;:9;:17;;;;;;;;;;;:29;;11861:6;11839:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;11819:17:0;;;:9;:17;;;;;;;;;;;:49;;;;11902:20;;;;;;;:32;;11927:6;11902:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11879:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;11950:35;;;;;;;11879:20;;11950:35;;;;;;;;;;;;;11564:429;;;:::o;12274:308::-;-1:-1:-1;;;;;12350:21:0;;12342:65;;;;;-1:-1:-1;;;12342:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12435:12;;:24;;12452:6;12435:24;:16;:24;:::i;:::-;12420:12;:39;-1:-1:-1;;;;;12491:18:0;;:9;:18;;;;;;;;;;;:30;;12514:6;12491:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12470:18:0;;:9;:18;;;;;;;;;;;:51;;;;12537:37;;;;;;;12470:18;;:9;;12537:37;;;;;;;;;;12274:308;;:::o;16037:183::-;16117:18;16121:4;16127:7;16117:3;:18::i;:::-;16109:64;;;;-1:-1:-1;;;16109:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16184:20:0;16207:5;16184:20;;;;;;;;;;;:28;;-1:-1:-1;;16184:28:0;;;16037:183::o;15779:178::-;15857:18;15861:4;15867:7;15857:3;:18::i;:::-;15856:19;15848:63;;;;;-1:-1:-1;;;15848:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15922:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15922:27:0;15945:4;15922:27;;;15779:178::o
Swarm Source
bzzr://822c55288883bacced8b21c3c70c1157fb03133bae0bd6c16979f5fa1e0f428d
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.