Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
120,000,000 BSCGIRL
Holders:
200 addresses
Transfers:
-
Contract:
Decimals:
8
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
BSC Girl Supports cross-chain bridge between Binance Smart Chain and Ethereum network and Polygon.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MainToken
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-15 */ /** *Submitted for verification at BscScan.com on 2021-05-26 */ /* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ pragma solidity ^0.4.23; /** * @title BEP20Basic * @dev Simpler version of BEP20 interface */ contract BEP20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting '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; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is BEP20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title BEP20 interface */ contract BEP20 is BEP20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @title Standard BEP20 token * * @dev Implementation of the basic standard token. * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is BEP20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * 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: * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint _subtractedValue ) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @title Mintable token * @dev Simple BEP20 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 StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } modifier hasMintPermission() { require(msg.sender == owner); _; } /** * @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 ) hasMintPermission canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } contract FreezableToken is StandardToken { // freezing chains mapping (bytes32 => uint64) internal chains; // freezing amounts for each chain mapping (bytes32 => uint) internal freezings; // total freezing balance per address mapping (address => uint) internal freezingBalance; event Freezed(address indexed to, uint64 release, uint amount); event Released(address indexed owner, uint amount); /** * @dev Gets the balance of the specified address include freezing tokens. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return super.balanceOf(_owner) + freezingBalance[_owner]; } /** * @dev Gets the balance of the specified address without freezing tokens. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function actualBalanceOf(address _owner) public view returns (uint256 balance) { return super.balanceOf(_owner); } function freezingBalanceOf(address _owner) public view returns (uint256 balance) { return freezingBalance[_owner]; } /** * @dev gets freezing count * @param _addr Address of freeze tokens owner. */ function freezingCount(address _addr) public view returns (uint count) { uint64 release = chains[toKey(_addr, 0)]; while (release != 0) { count++; release = chains[toKey(_addr, release)]; } } /** * @dev gets freezing end date and freezing balance for the freezing portion specified by index. * @param _addr Address of freeze tokens owner. * @param _index Freezing portion index. It ordered by release date descending. */ function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) { for (uint i = 0; i < _index + 1; i++) { _release = chains[toKey(_addr, _release)]; if (_release == 0) { return; } } _balance = freezings[toKey(_addr, _release)]; } /** * @dev freeze your tokens to the specified address. * Be careful, gas usage is not deterministic, * and depends on how many freezes _to address already has. * @param _to Address to which token will be freeze. * @param _amount Amount of token to freeze. * @param _until Release date, must be in future. */ function freezeTo(address _to, uint _amount, uint64 _until) public { require(_to != address(0)); require(_amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); bytes32 currentKey = toKey(_to, _until); freezings[currentKey] = freezings[currentKey].add(_amount); freezingBalance[_to] = freezingBalance[_to].add(_amount); freeze(_to, _until); emit Transfer(msg.sender, _to, _amount); emit Freezed(_to, _until, _amount); } /** * @dev release first available freezing tokens. */ function releaseOnce() public { bytes32 headKey = toKey(msg.sender, 0); uint64 head = chains[headKey]; require(head != 0); require(uint64(block.timestamp) > head); bytes32 currentKey = toKey(msg.sender, head); uint64 next = chains[currentKey]; uint amount = freezings[currentKey]; delete freezings[currentKey]; balances[msg.sender] = balances[msg.sender].add(amount); freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount); if (next == 0) { delete chains[headKey]; } else { chains[headKey] = next; delete chains[currentKey]; } emit Released(msg.sender, amount); } /** * @dev release all available for release freezing tokens. Gas usage is not deterministic! * @return how many tokens was released */ function releaseAll() public returns (uint tokens) { uint release; uint balance; (release, balance) = getFreezing(msg.sender, 0); while (release != 0 && block.timestamp > release) { releaseOnce(); tokens += balance; (release, balance) = getFreezing(msg.sender, 0); } } function toKey(address _addr, uint _release) internal pure returns (bytes32 result) { // WISH masc to increase entropy result = 0x5749534800000000000000000000000000000000000000000000000000000000; assembly { result := or(result, mul(_addr, 0x10000000000000000)) result := or(result, and(_release, 0xffffffffffffffff)) } } function freeze(address _to, uint64 _until) internal { require(_until > block.timestamp); bytes32 key = toKey(_to, _until); bytes32 parentKey = toKey(_to, uint64(0)); uint64 next = chains[parentKey]; if (next == 0) { chains[parentKey] = _until; return; } bytes32 nextKey = toKey(_to, next); uint parent; while (next != 0 && _until > next) { parent = next; parentKey = nextKey; next = chains[nextKey]; nextKey = toKey(_to, next); } if (_until == next) { return; } if (next != 0) { chains[key] = next; } chains[parentKey] = _until; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } contract FreezableMintableToken is FreezableToken, MintableToken { /** * @dev Mint the specified amount of token to the specified address and freeze it until the specified date. * Be careful, gas usage is not deterministic, * and depends on how many freezes _to address already has. * @param _to Address to which token will be freeze. * @param _amount Amount of token to mint and freeze. * @param _until Release date, must be in future. * @return A boolean that indicates if the operation was successful. */ function mintAndFreeze(address _to, uint _amount, uint64 _until) public onlyOwner canMint returns (bool) { totalSupply_ = totalSupply_.add(_amount); bytes32 currentKey = toKey(_to, _until); freezings[currentKey] = freezings[currentKey].add(_amount); freezingBalance[_to] = freezingBalance[_to].add(_amount); freeze(_to, _until); emit Mint(_to, _amount); emit Freezed(_to, _until, _amount); emit Transfer(msg.sender, _to, _amount); return true; } } contract Consts { uint public constant TOKEN_DECIMALS = 8; uint8 public constant TOKEN_DECIMALS_UINT8 = 8; uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS; string public constant TOKEN_NAME = "Binance Smart Chain Girl"; string public constant TOKEN_SYMBOL = "BSCGIRL"; bool public constant PAUSED = false; address public constant TARGET_USER = 0x10ef43d90ca8baf45f7a753b931bc064a0ac1ebd; bool public constant CONTINUE_MINTING = false; uint256 public constant TOTAL_SUPPLY = 12000000000000000; } contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable { event Initialized(); bool public initialized = false; constructor() public { init(); transferOwnership(TARGET_USER); totalSupply_ = totalSupply_.add(TOTAL_SUPPLY); balances[msg.sender] = balances[msg.sender].add(TOTAL_SUPPLY); emit Mint(msg.sender, TOTAL_SUPPLY); emit Transfer(address(0), msg.sender, TOTAL_SUPPLY); } function name() public pure returns (string _name) { return TOKEN_NAME; } function symbol() public pure returns (string _symbol) { return TOKEN_SYMBOL; } function decimals() public pure returns (uint8 _decimals) { return TOKEN_DECIMALS_UINT8; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) { require(!paused); return super.transferFrom(_from, _to, _value); } function transfer(address _to, uint256 _value) public returns (bool _success) { require(!paused); return super.transfer(_to, _value); } function init() private { require(!initialized); initialized = true; if (PAUSED) { pause(); } if (!CONTINUE_MINTING) { finishMinting(); } emit Initialized(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"CONTINUE_MINTING","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"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":"_name","type":"string"}],"payable":false,"stateMutability":"pure","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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"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":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":"TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PAUSED","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","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":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":[],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","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"},{"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"}]
Contract Creation Code
60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a03191633179055620000496401000000006200015c810204565b620000717310ef43d90ca8baf45f7a753b931bc064a0ac1ebd640100000000620001ef810204565b6001546200009590662aa1efb94e0000640100000000620018596200021e82021704565b60015533600090815260208190526040902054620000c990662aa1efb94e0000640100000000620018596200021e82021704565b3360008181526020818152604091829020939093558051662aa1efb94e00008152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a260408051662aa1efb94e00008152905133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36200033e565b600654760100000000000000000000000000000000000000000000900460ff16156200018757600080fd5b6006805460b060020a60ff021916760100000000000000000000000000000000000000000000179055620001c364010000000062000232810204565b506040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a1565b600654600160a060020a031633146200020757600080fd5b6200021b81640100000000620002cc810204565b50565b818101828110156200022c57fe5b92915050565b600654600090600160a060020a031633146200024d57600080fd5b60065474010000000000000000000000000000000000000000900460ff16156200027657600080fd5b6006805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600160a060020a0381161515620002e257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b611f77806200034e6000396000f3006080604052600436106101e15763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101e657806302d6f7301461020f57806305d2035b1461026457806306fdde0314610279578063095ea7b3146103035780630bb2cd6b14610334578063158ef93e1461037257806317a950ac1461038757806318160ddd146103c757806318821400146103dc57806323b872dd146103f15780632a90531814610428578063313ce5671461043d5780633be1e952146104685780633f4ba83a146104a857806340c10f19146104bd57806342966c68146104ee57806356780085146105065780635b7f415c1461051b5780635be7fde8146105305780635c975abb14610545578063661884631461055a57806366a92cda1461058b57806370a08231146105a0578063715018a6146105ce578063726a431a146105e35780637d64bcb4146106215780638456cb59146106365780638da5cb5b1461064b578063902d55a51461066057806395d89b4114610675578063a9059cbb1461068a578063a9aad58c146101e6578063ca63b5b8146106bb578063cf3b1967146106e9578063d73dd623146106fe578063d8aeedf51461072f578063dd62ed3e1461075d578063f2fde38b14610791575b600080fd5b3480156101f257600080fd5b506101fb6107bf565b604080519115158252519081900360200190f35b34801561021b57600080fd5b5061024073ffffffffffffffffffffffffffffffffffffffff600435166024356107c4565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561027057600080fd5b506101fb610851565b34801561028557600080fd5b5061028e610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c85781810151838201526020016102b0565b50505050905090810190601f1680156102f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030f57600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff600435166024356108a9565b34801561034057600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff6004351660243567ffffffffffffffff6044351661091c565b34801561037e57600080fd5b506101fb610b2b565b34801561039357600080fd5b506103b573ffffffffffffffffffffffffffffffffffffffff60043516610b4e565b60408051918252519081900360200190f35b3480156103d357600080fd5b506103b5610b5f565b3480156103e857600080fd5b5061028e610b65565b3480156103fd57600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff60043581169060243516604435610b9c565b34801561043457600080fd5b5061028e610bdb565b34801561044957600080fd5b50610452610c12565b6040805160ff9092168252519081900360200190f35b34801561047457600080fd5b506104a673ffffffffffffffffffffffffffffffffffffffff6004351660243567ffffffffffffffff60443516610c17565b005b3480156104b457600080fd5b506104a6610dde565b3480156104c957600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff60043516602435610e7f565b3480156104fa57600080fd5b506104a6600435610fce565b34801561051257600080fd5b506103b5610fdb565b34801561052757600080fd5b506103b5610fe3565b34801561053c57600080fd5b506103b5610fe8565b34801561055157600080fd5b506101fb61104d565b34801561056657600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff6004351660243561106f565b34801561059757600080fd5b506104a6611193565b3480156105ac57600080fd5b506103b573ffffffffffffffffffffffffffffffffffffffff60043516611364565b3480156105da57600080fd5b506104a661139a565b3480156105ef57600080fd5b506105f861142d565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561062d57600080fd5b506101fb611445565b34801561064257600080fd5b506104a6611502565b34801561065757600080fd5b506105f86115ba565b34801561066c57600080fd5b506103b56115d6565b34801561068157600080fd5b5061028e6115e1565b34801561069657600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff60043516602435611618565b3480156106c757600080fd5b506103b573ffffffffffffffffffffffffffffffffffffffff60043516611655565b3480156106f557600080fd5b50610452610fe3565b34801561070a57600080fd5b506101fb73ffffffffffffffffffffffffffffffffffffffff600435166024356116db565b34801561073b57600080fd5b506103b573ffffffffffffffffffffffffffffffffffffffff6004351661178e565b34801561076957600080fd5b506103b573ffffffffffffffffffffffffffffffffffffffff600435811690602435166117b6565b34801561079d57600080fd5b506104a673ffffffffffffffffffffffffffffffffffffffff600435166117ee565b600081565b600080805b8360010181101561081d57600360006107ec878667ffffffffffffffff1661181b565b815260208101919091526040016000205467ffffffffffffffff16925082151561081557610849565b6001016107c9565b60046000610835878667ffffffffffffffff1661181b565b815260208101919091526040016000205491505b509250929050565b60065474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152601881527f42696e616e636520536d61727420436861696e204769726c0000000000000000602082015290565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600654600090819073ffffffffffffffffffffffffffffffffffffffff16331461094557600080fd5b60065474010000000000000000000000000000000000000000900460ff161561096d57600080fd5b600154610980908563ffffffff61185916565b6001556109978567ffffffffffffffff851661181b565b6000818152600460205260409020549091506109b9908563ffffffff61185916565b60008281526004602090815260408083209390935573ffffffffffffffffffffffffffffffffffffffff881682526005905220546109fd908563ffffffff61185916565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260056020526040902055610a2d8584611866565b60408051858152905173ffffffffffffffffffffffffffffffffffffffff8716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff8516815260208101869052815173ffffffffffffffffffffffffffffffffffffffff8816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a260408051858152905173ffffffffffffffffffffffffffffffffffffffff87169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b6000610b5982611a45565b92915050565b60015490565b60408051808201909152601881527f42696e616e636520536d61727420436861696e204769726c0000000000000000602082015281565b6006546000907501000000000000000000000000000000000000000000900460ff1615610bc857600080fd5b610bd3848484611a6d565b949350505050565b60408051808201909152600781527f4253434749524c00000000000000000000000000000000000000000000000000602082015281565b600890565b600073ffffffffffffffffffffffffffffffffffffffff84161515610c3b57600080fd5b33600090815260208190526040902054831115610c5757600080fd5b33600090815260208190526040902054610c77908463ffffffff611c3f16565b33600090815260208190526040902055610c9b8467ffffffffffffffff841661181b565b600081815260046020526040902054909150610cbd908463ffffffff61185916565b60008281526004602090815260408083209390935573ffffffffffffffffffffffffffffffffffffffff87168252600590522054610d01908463ffffffff61185916565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260056020526040902055610d318483611866565b60408051848152905173ffffffffffffffffffffffffffffffffffffffff86169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36040805167ffffffffffffffff8416815260208101859052815173ffffffffffffffffffffffffffffffffffffffff8716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e0257600080fd5b6006547501000000000000000000000000000000000000000000900460ff161515610e2c57600080fd5b600680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60065460009073ffffffffffffffffffffffffffffffffffffffff163314610ea657600080fd5b60065474010000000000000000000000000000000000000000900460ff1615610ece57600080fd5b600154610ee1908363ffffffff61185916565b60015573ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610f1a908363ffffffff61185916565b73ffffffffffffffffffffffffffffffffffffffff841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a260408051838152905173ffffffffffffffffffffffffffffffffffffffff8516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b610fd83382611c51565b50565b6305f5e10081565b600881565b6000806000610ff83360006107c4565b67ffffffffffffffff909116925090505b811580159061101757508142115b1561104857611024611193565b918201916110333360006107c4565b67ffffffffffffffff90911692509050611009565b505090565b6006547501000000000000000000000000000000000000000000900460ff1681565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054808311156110de5733600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff88168452909152812055611120565b6110ee818463ffffffff611c3f16565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff891684529091529020555b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008060008060006111a633600061181b565b60008181526003602052604090205490955067ffffffffffffffff1693508315156111d057600080fd5b8367ffffffffffffffff164267ffffffffffffffff161115156111f257600080fd5b611206338567ffffffffffffffff1661181b565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150611252908263ffffffff61185916565b336000908152602081815260408083209390935560059052205461127c908263ffffffff611c3f16565b3360009081526005602052604090205567ffffffffffffffff821615156112d657600085815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000169055611327565b600085815260036020526040808220805467ffffffffffffffff86167fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205461139383611a45565b0192915050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146113be57600080fd5b60065460405173ffffffffffffffffffffffffffffffffffffffff909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b7310ef43d90ca8baf45f7a753b931bc064a0ac1ebd81565b60065460009073ffffffffffffffffffffffffffffffffffffffff16331461146c57600080fd5b60065474010000000000000000000000000000000000000000900460ff161561149457600080fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60065473ffffffffffffffffffffffffffffffffffffffff16331461152657600080fd5b6006547501000000000000000000000000000000000000000000900460ff161561154f57600080fd5b600680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b662aa1efb94e000081565b60408051808201909152600781527f4253434749524c00000000000000000000000000000000000000000000000000602082015290565b6006546000907501000000000000000000000000000000000000000000900460ff161561164457600080fd5b61164e8383611d93565b9392505050565b6000806003600061166785600061181b565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff8116156116d557600190910190600360006116b38567ffffffffffffffff851661181b565b815260208101919091526040016000205467ffffffffffffffff169050611685565b50919050565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205461171c908363ffffffff61185916565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b60065473ffffffffffffffffffffffffffffffffffffffff16331461181257600080fd5b610fd881611e9b565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b81810182811015610b5957fe5b6000808080804267ffffffffffffffff87161161188257600080fd5b611896878767ffffffffffffffff1661181b565b94506118a387600061181b565b60008181526003602052604090205490945067ffffffffffffffff16925082151561190d57600084815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8816179055611a3c565b611921878467ffffffffffffffff1661181b565b91505b67ffffffffffffffff83161580159061195057508267ffffffffffffffff168667ffffffffffffffff16115b15611989575060008181526003602052604090205490925067ffffffffffffffff90811691839116611982878461181b565b9150611924565b8267ffffffffffffffff168667ffffffffffffffff1614156119aa57611a3c565b67ffffffffffffffff8316156119fb57600085815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff85161790555b600084815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff88161790555b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600073ffffffffffffffffffffffffffffffffffffffff83161515611a9157600080fd5b73ffffffffffffffffffffffffffffffffffffffff8416600090815260208190526040902054821115611ac357600080fd5b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054821115611b0057600080fd5b73ffffffffffffffffffffffffffffffffffffffff8416600090815260208190526040902054611b36908363ffffffff611c3f16565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681522054611b78908363ffffffff61185916565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208181526040808320949094559187168152600282528281203382529091522054611bc7908363ffffffff611c3f16565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115611c4b57fe5b50900390565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054811115611c8357600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611cb9908263ffffffff611c3f16565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600154611cf2908263ffffffff611c3f16565b60015560408051828152905173ffffffffffffffffffffffffffffffffffffffff8416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a260408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600073ffffffffffffffffffffffffffffffffffffffff83161515611db757600080fd5b33600090815260208190526040902054821115611dd357600080fd5b33600090815260208190526040902054611df3908363ffffffff611c3f16565b336000908152602081905260408082209290925573ffffffffffffffffffffffffffffffffffffffff851681522054611e32908363ffffffff61185916565b73ffffffffffffffffffffffffffffffffffffffff8416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b73ffffffffffffffffffffffffffffffffffffffff81161515611ebd57600080fd5b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555600a165627a7a723058208e7462068d134ff164170f31b972d9b0395fb7e7b65e33c081c7dc9433829ee90029
Deployed ByteCode Sourcemap
20512:1457:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20390:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20390:45:0;;;;;;;;;;;;;;;;;;;;;;13209:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13209:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10199:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10199:35:0;;;;21013:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21013:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;21013:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5839:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5839:192:0;;;;;;;;;19387:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19387:535:0;;;;;;;;;;;;;20636:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20636:31:0;;;;12316:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12316:128:0;;;;;;;;;;;;;;;;;;;;;;;2827:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2827:85:0;;;;20132:62;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20132:62:0;;;;21321:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21321:188:0;;;;;;;;;;;;;;20201:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20201:47:0;;;;21209:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21209:104:0;;;;;;;;;;;;;;;;;;;;;;;13938:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13938:547:0;;;;;;;;;;;;;;;18707:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18707:95:0;;;;10636:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10636:326:0;;;;;;;;;17356:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17356:75:0;;;;;20055:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20055:68:0;;;;19956:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19956:39:0;;;;15488:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15488:357:0;;;;18086:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18086:26:0;;;;7767:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7767:440:0;;;;;;;;;14565:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14565:756:0;;;;11919:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11919:148:0;;;;;;;9055:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9055:114:0;;;;20297:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20297:80:0;;;;;;;;;;;;;;;;;;;;;;;11082:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11082:144:0;;;;18527:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18527:93:0;;;;8437:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8437:20:0;;;;20442:56;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20442:56:0;;;;21108:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21108:93:0;;;;21517:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21517:158:0;;;;;;;;;12694:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12694:249:0;;;;;;;20002:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20002:46:0;;;;6989:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6989:304:0;;;;;;;;;12452:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12452:130:0;;;;;;;6358:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6358:162:0;;;;;;;;;;;;9337:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9337:105:0;;;;;;;20390:45;20430:5;20390:45;:::o;13209:355::-;13279:15;;;13322:180;13343:6;13352:1;13343:10;13339:1;:14;13322:180;;;13386:6;:30;13393:22;13399:5;13406:8;13393:22;;:5;:22::i;:::-;13386:30;;;;;;;;;;;;;;;;;-1:-1:-1;13435:13:0;;13431:60;;;13469:7;;13431:60;13355:3;;13322:180;;;13523:9;:33;13533:22;13539:5;13546:8;13533:22;;:5;:22::i;:::-;13523:33;;;;;;;;;;;;;;;-1:-1:-1;13209:355:0;;;;;;;:::o;10199:35::-;;;;;;;;;:::o;21013:87::-;21082:10;;;;;;;;;;;;;;;;;21013:87;:::o;5839:192::-;5927:10;5906:4;5919:19;;;:7;:19;;;;;;;;;:29;;;;;;;;;;;:38;;;5969;;;;;;;5906:4;;5919:29;;5927:10;;5969:38;;;;;;;;-1:-1:-1;6021:4:0;5839:192;;;;:::o;19387:535::-;8940:5;;19486:4;;;;8940:5;;8926:10;:19;8918:28;;;;;;10278:15;;;;;;;10277:16;10269:25;;;;;;19518:12;;:25;;19535:7;19518:25;:16;:25;:::i;:::-;19503:12;:40;19577:18;19583:3;19577:18;;;:5;:18::i;:::-;19630:21;;;;:9;:21;;;;;;19556:39;;-1:-1:-1;19630:34:0;;19656:7;19630:34;:25;:34;:::i;:::-;19606:21;;;;:9;:21;;;;;;;;:58;;;;19698:20;;;;;:15;:20;;;;:33;;19723:7;19698:33;:24;:33;:::i;:::-;19675:20;;;;;;;:15;:20;;;;;:56;19744:19;19691:3;19756:6;19744;:19::i;:::-;19779:18;;;;;;;;;;;;;;;;;;;;;;19813:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;19858:34;;;;;;;;;;;;19867:10;;19858:34;;;;;;;;;-1:-1:-1;19910:4:0;;19387:535;-1:-1:-1;;;;19387:535:0:o;20636:31::-;;;;;;;;;:::o;12316:128::-;12378:15;12413:23;12429:6;12413:15;:23::i;:::-;12406:30;12316:128;-1:-1:-1;;12316:128:0:o;2827:85::-;2894:12;;2827:85;:::o;20132:62::-;;;;;;;;;;;;;;;;;;;:::o;21321:188::-;21438:6;;21403:13;;21438:6;;;;;21437:7;21429:16;;;;;;21463:38;21482:5;21489:3;21494:6;21463:18;:38::i;:::-;21456:45;21321:188;-1:-1:-1;;;;21321:188:0:o;20201:47::-;;;;;;;;;;;;;;;;;;;:::o;21209:104::-;20047:1;21209:104;:::o;13938:547::-;14175:18;14024:17;;;;;14016:26;;;;;;14081:10;14072:8;:20;;;;;;;;;;;14061:31;;;14053:40;;;;;;14138:10;14129:8;:20;;;;;;;;;;;:33;;14154:7;14129:33;:24;:33;:::i;:::-;14115:10;14106:8;:20;;;;;;;;;;:56;14196:18;14202:3;14196:18;;;:5;:18::i;:::-;14249:21;;;;:9;:21;;;;;;14175:39;;-1:-1:-1;14249:34:0;;14275:7;14249:34;:25;:34;:::i;:::-;14225:21;;;;:9;:21;;;;;;;;:58;;;;14317:20;;;;;:15;:20;;;;:33;;14342:7;14317:33;:24;:33;:::i;:::-;14294:20;;;;;;;:15;:20;;;;;:56;14363:19;14310:3;14375:6;14363;:19::i;:::-;14398:34;;;;;;;;;;;;14407:10;;14398:34;;;;;;;;;14448:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;13938:547;;;;:::o;18707:95::-;8940:5;;;;8926:10;:19;8918:28;;;;;;18422:6;;;;;;;18414:15;;;;;;;;18761:6;:14;;;;;;18787:9;;;;18770:5;;18787:9;18707:95::o;10636:326::-;10372:5;;10757:4;;10372:5;;10358:10;:19;10350:28;;;;;;10278:15;;;;;;;10277:16;10269:25;;;;;;10788:12;;:25;;10805:7;10788:25;:16;:25;:::i;:::-;10773:12;:40;10836:13;;;:8;:13;;;;;;;;;;;:26;;10854:7;10836:26;:17;:26;:::i;:::-;10820:13;;;:8;:13;;;;;;;;;;;;:42;;;;10874:18;;;;;;;10820:13;;10874:18;;;;;;;;;10904:34;;;;;;;;;;;;10921:1;;10904:34;;;;;;;;;-1:-1:-1;10952:4:0;10636:326;;;;:::o;17356:75::-;17400:25;17406:10;17418:6;17400:5;:25::i;:::-;17356:75;:::o;20055:68::-;20103:20;20055:68;:::o;19956:39::-;19994:1;19956:39;:::o;15488:357::-;15526:11;15550:12;15573;15617:26;15629:10;15641:1;15617:11;:26::i;:::-;15596:47;;;;;-1:-1:-1;15596:47:0;-1:-1:-1;15654:184:0;15661:12;;;;;:41;;;15695:7;15677:15;:25;15661:41;15654:184;;;15719:13;:11;:13::i;:::-;15747:17;;;;15800:26;15812:10;15824:1;15800:11;:26::i;:::-;15779:47;;;;;-1:-1:-1;15779:47:0;-1:-1:-1;15654:184:0;;;15488:357;;;:::o;18086:26::-;;;;;;;;;:::o;7767:440::-;7915:10;7875:4;7907:19;;;:7;:19;;;;;;;;;:29;;;;;;;;;;7947:27;;;7943:168;;;7993:10;8017:1;7985:19;;;:7;:19;;;;;;;;;:29;;;;;;;;;:33;7943:168;;;8073:30;:8;8086:16;8073:30;:12;:30;:::i;:::-;8049:10;8041:19;;;;:7;:19;;;;;;;;;:29;;;;;;;;;:62;7943:168;8131:10;8153:19;;;;:7;:19;;;;;;;;8122:61;;;8153:29;;;;;;;;;;;8122:61;;;;;;;;;8131:10;8122:61;;;;;;;;;;;-1:-1:-1;8197:4:0;;7767:440;-1:-1:-1;;;7767:440:0:o;14565:756::-;14606:15;14655:11;14774:18;14831:11;14876;14624:20;14630:10;14642:1;14624:5;:20::i;:::-;14669:15;;;;:6;:15;;;;;;14606:38;;-1:-1:-1;14669:15:0;;;-1:-1:-1;14703:9:0;;;14695:18;;;;;;14758:4;14732:30;;14739:15;14732:30;;;14724:39;;;;;;;;14795:23;14801:10;14813:4;14795:23;;:5;:23::i;:::-;14845:18;;;;:6;:18;;;;;;;;;14890:9;:21;;;;;;;14922:28;;;;14995:10;14986:20;;;;;;;;;14774:44;;-1:-1:-1;14845:18:0;;;;;-1:-1:-1;14890:21:0;-1:-1:-1;14986:32:0;;14890:21;14986:32;:24;:32;:::i;:::-;14972:10;14963:8;:20;;;;;;;;;;;:55;;;;15059:15;:27;;;;:39;;15091:6;15059:39;:31;:39;:::i;:::-;15045:10;15029:27;;;;:15;:27;;;;;:69;15115:9;;;;15111:159;;;15148:15;;;;:6;:15;;;;;15141:22;;;;;;15111:159;;;15196:15;;;;:6;:15;;;;;;:22;;;;;;;;;;;;;15240:18;;;;;15233:25;;;;;;;15111:159;15285:28;;;;;;;;15294:10;;15285:28;;;;;;;;;;14565:756;;;;;:::o;11919:148::-;12036:23;;;11975:15;12036:23;;;:15;:23;;;;;;12010;12052:6;12010:15;:23::i;:::-;:49;;11919:148;-1:-1:-1;;11919:148:0:o;9055:114::-;8940:5;;;;8926:10;:19;8918:28;;;;;;9132:5;;9113:25;;9132:5;;;;;9113:25;;9132:5;;9113:25;9145:5;:18;;;;;;9055:114::o;20297:80::-;20335:42;20297:80;:::o;11082:144::-;8940:5;;11141:4;;8940:5;;8926:10;:19;8918:28;;;;;;10278:15;;;;;;;10277:16;10269:25;;;;;;11154:15;:22;;;;;;;;11188:14;;;;11154:22;;11188:14;-1:-1:-1;11216:4:0;11082:144;:::o;18527:93::-;8940:5;;;;8926:10;:19;8918:28;;;;;;18262:6;;;;;;;18261:7;18253:16;;;;;;18582:6;:13;;;;;;;;18607:7;;;;18582:13;;18607:7;18527:93::o;8437:20::-;;;;;;:::o;20442:56::-;20481:17;20442:56;:::o;21108:93::-;21181:12;;;;;;;;;;;;;;;;;21108:93;:::o;21517:158::-;21615:6;;21580:13;;21615:6;;;;;21614:7;21606:16;;;;;;21640:27;21655:3;21660:6;21640:14;:27::i;:::-;21633:34;21517:158;-1:-1:-1;;;21517:158:0:o;12694:249::-;12753:10;12776:14;12793:6;:23;12800:15;12806:5;12813:1;12800:5;:15::i;:::-;12793:23;;;;;;;;;;;;;;;;;-1:-1:-1;12827:109:0;12834:12;;;;12827:109;;12863:7;;;;;12895:6;:29;12902:21;12908:5;12902:21;;;:5;:21::i;:::-;12895:29;;;;;;;;;;;;;;;;;-1:-1:-1;12827:109:0;;;12694:249;;;;:::o;6989:304::-;7157:10;7092:4;7149:19;;;:7;:19;;;;;;;;;:29;;;;;;;;;;:46;;7183:11;7149:46;:33;:46;:::i;:::-;7116:10;7108:19;;;;:7;:19;;;;;;;;;:29;;;;;;;;;;;;:88;;;7208:61;;;;;;7108:29;;7208:61;;;;;;;;;;;-1:-1:-1;7283:4:0;6989:304;;;;:::o;12452:130::-;12551:23;;12516:15;12551:23;;;:15;:23;;;;;;;12452:130::o;6358:162::-;6489:15;;;;6463:7;6489:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6358:162::o;9337:105::-;8940:5;;;;8926:10;:19;8918:28;;;;;;9407:29;9426:9;9407:18;:29::i;15853:387::-;16202:18;16188:33;16132:19;16121:31;;;;16177:45;15999:66;16177:45;;16085:148::o;2394:127::-;2474:5;;;2493:6;;;;2486:14;;;16248:789;16356:11;;;;;16329:15;16320:24;;;;16312:33;;;;;;16370:18;16376:3;16381:6;16370:18;;:5;:18::i;:::-;16356:32;-1:-1:-1;16419:21:0;16425:3;16437:1;16419:5;:21::i;:::-;16465:17;;;;:6;:17;;;;;;16399:41;;-1:-1:-1;16465:17:0;;;-1:-1:-1;16499:9:0;;16495:89;;;16525:17;;;;:6;:17;;;;;:26;;;;;;;;;;16566:7;;16495:89;16614:16;16620:3;16625:4;16614:16;;:5;:16::i;:::-;16596:34;;16665:189;16672:9;;;;;;;:26;;;16694:4;16685:13;;:6;:13;;;16672:26;16665:189;;;-1:-1:-1;16786:15:0;;;;:6;:15;;;;;;16755:7;;-1:-1:-1;16715:13:0;16786:15;;;;16755:7;;16715:13;16826:16;16832:3;16786:15;16826:5;:16::i;:::-;16816:26;;16665:189;;;16880:4;16870:14;;:6;:14;;;16866:53;;;16901:7;;16866:53;16935:9;;;;16931:60;;16961:11;;;;:6;:11;;;;;:18;;;;;;;;;;16931:60;17003:17;;;;:6;:17;;;;;:26;;;;;;;;;;16248:789;;;;;;;;:::o;3611:101::-;3690:16;;3667:7;3690:16;;;;;;;;;;;;3611:101::o;4789:487::-;4901:4;4925:17;;;;;4917:26;;;;;;4968:15;;;:8;:15;;;;;;;;;;;4958:25;;;4950:34;;;;;;5009:14;;;;;;;:7;:14;;;;;;;;5024:10;5009:26;;;;;;;;4999:36;;;4991:45;;;;;;5063:15;;;:8;:15;;;;;;;;;;;:27;;5083:6;5063:27;:19;:27;:::i;:::-;5045:15;;;;:8;:15;;;;;;;;;;;:45;;;;5113:13;;;;;;;:25;;5131:6;5113:25;:17;:25;:::i;:::-;5097:13;;;;:8;:13;;;;;;;;;;;:41;;;;5174:14;;;;;:7;:14;;;;;5189:10;5174:26;;;;;;;:38;;5205:6;5174:38;:30;:38;:::i;:::-;5145:14;;;;;;;;:7;:14;;;;;;;;5160:10;5145:26;;;;;;;;:67;;;;5224:28;;;;;;;;;;;5145:14;;5224:28;;;;;;;;;;;-1:-1:-1;5266:4:0;4789:487;;;;;:::o;2214:113::-;2272:7;2295:6;;;;2288:14;;;;-1:-1:-1;2316:5:0;;;2214:113::o;17437:447::-;17516:14;;;:8;:14;;;;;;;;;;;17506:24;;;17498:33;;;;;;17730:14;;;:8;:14;;;;;;;;;;;:26;;17749:6;17730:26;:18;:26;:::i;:::-;17713:14;;;:8;:14;;;;;;;;;;:43;17778:12;;:24;;17795:6;17778:24;:16;:24;:::i;:::-;17763:12;:39;17814:18;;;;;;;;;;;;;;;;;;;;;;17844:34;;;;;;;;17867:1;;17844:34;;;;;;;;;;;;;17437:447;;:::o;3073:329::-;3136:4;3157:17;;;;;3149:26;;;;;;3209:10;3200:8;:20;;;;;;;;;;;3190:30;;;3182:39;;;;;;3262:10;3253:8;:20;;;;;;;;;;;:32;;3278:6;3253:32;:24;:32;:::i;:::-;3239:10;3230:8;:20;;;;;;;;;;;:55;;;;:20;3308:13;;;;;;:25;;3326:6;3308:25;:17;:25;:::i;:::-;3292:13;;;:8;:13;;;;;;;;;;;;:41;;;;3345:33;;;;;;;3292:13;;3354:10;;3345:33;;;;;;;;;;-1:-1:-1;3392:4:0;3073:329;;;;:::o;9583:175::-;9654:23;;;;;9646:32;;;;;;9711:5;;9690:38;;;;;;;9711:5;;9690:38;;9711:5;;9690:38;9735:5;:17;;;;;;;;;;;;;;;9583:175::o
Swarm Source
bzzr://8e7462068d134ff164170f31b972d9b0395fb7e7b65e33c081c7dc9433829ee9